Moving the tabs_module API into a separate directory in api/
Also, splitting extension_tab_modules_constants namespace into
extensions::tab_modules_constants.
BUG=101244
TEST=N/A, only moving code, no change in functionality
[email protected]
Review URL: https://chromiumcodereview.appspot.com/10544023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141231 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/extensions/extension_tab_util.cc b/chrome/browser/extensions/extension_tab_util.cc
index 2e2db28..d11304c 100644
--- a/chrome/browser/extensions/extension_tab_util.cc
+++ b/chrome/browser/extensions/extension_tab_util.cc
@@ -4,7 +4,7 @@
#include "chrome/browser/extensions/extension_tab_util.h"
-#include "chrome/browser/extensions/extension_tabs_module_constants.h"
+#include "chrome/browser/extensions/api/tabs/tabs_constants.h"
#include "chrome/browser/net/url_fixer_upper.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sessions/restore_tab_helper.h"
@@ -21,7 +21,7 @@
#include "content/public/browser/web_contents.h"
#include "googleurl/src/gurl.h"
-namespace keys = extension_tabs_module_constants;
+namespace keys = extensions::tabs_constants;
namespace errors = extension_manifest_errors;
using content::NavigationEntry;