diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-01 20:25:23 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-01 20:25:23 +0000 |
commit | cb2edf23d2553c6e13d070a33f9f2b9613d21ab1 (patch) | |
tree | 51c0b1125dba09b873d5f4bb6b63ae8c6ad35b17 /chrome/browser/ui/browser_tab_contents.cc | |
parent | 6ba8fcd3ec74b24afb75821236de78677081ad29 (diff) | |
download | chromium_src-cb2edf23d2553c6e13d070a33f9f2b9613d21ab1.zip chromium_src-cb2edf23d2553c6e13d070a33f9f2b9613d21ab1.tar.gz chromium_src-cb2edf23d2553c6e13d070a33f9f2b9613d21ab1.tar.bz2 |
Move the ViewType enum to extensions\common.
BUG=162530
Review URL: https://codereview.chromium.org/13375017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@191650 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/browser_tab_contents.cc')
-rw-r--r-- | chrome/browser/ui/browser_tab_contents.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/ui/browser_tab_contents.cc b/chrome/browser/ui/browser_tab_contents.cc index 28b06f4..0300bf2 100644 --- a/chrome/browser/ui/browser_tab_contents.cc +++ b/chrome/browser/ui/browser_tab_contents.cc @@ -42,11 +42,11 @@ #include "chrome/browser/ui/tab_contents/core_tab_helper.h" #include "chrome/browser/ui/web_contents_modal_dialog_manager.h" #include "chrome/browser/ui/zoom/zoom_controller.h" -#include "chrome/browser/view_type_utils.h" #include "chrome/common/chrome_switches.h" #include "components/autofill/browser/autofill_external_delegate.h" #include "components/autofill/browser/autofill_manager.h" #include "content/public/browser/web_contents.h" +#include "extensions/browser/view_type_utils.h" #if defined(ENABLE_AUTOMATION) #include "chrome/browser/automation/automation_tab_helper.h" @@ -91,7 +91,7 @@ void BrowserTabContents::AttachTabHelpers(WebContents* web_contents) { new base::SupportsUserData::Data()); // Set the view type. - chrome::SetViewType(web_contents, chrome::VIEW_TYPE_TAB_CONTENTS); + extensions::SetViewType(web_contents, extensions::VIEW_TYPE_TAB_CONTENTS); // Create all the tab helpers. |