diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-16 23:51:38 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-16 23:51:38 +0000 |
commit | c2dacc9ec41232903ba700c6aef5ef98bfcb8af8 (patch) | |
tree | 4aa4d7100862c64bdd92d70e6323001beb19edb7 /chrome/browser/tab_contents.h | |
parent | d66e710ec668e34271def44d7f0416260657171c (diff) | |
download | chromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.zip chromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.tar.gz chromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.tar.bz2 |
Rename ChromeViews namespace to views
http://crbug.com/2188
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3495 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents.h')
-rw-r--r-- | chrome/browser/tab_contents.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/tab_contents.h b/chrome/browser/tab_contents.h index fc6fa04..99daf5d 100644 --- a/chrome/browser/tab_contents.h +++ b/chrome/browser/tab_contents.h @@ -19,6 +19,9 @@ namespace gfx { class Rect; class Size; } +namespace views { +class WindowDelegate; +} class DOMUIHost; class DownloadItem; @@ -319,8 +322,8 @@ class TabContents : public PageNavigator, // is sized according to the preferred size of the content_view, and centered // within the contents. ConstrainedWindow* CreateConstrainedDialog( - ChromeViews::WindowDelegate* window_delegate, - ChromeViews::View* contents_view); + views::WindowDelegate* window_delegate, + views::View* contents_view); // Adds a new tab or window with the given already-created contents void AddNewContents(TabContents* new_contents, @@ -403,7 +406,7 @@ class TabContents : public PageNavigator, // this returns NULL, the TabContents is supposed to know how to process TAB // key events and is just sent the key messages. If this returns a RootView, // the focus is passed to the RootView. - virtual ChromeViews::RootView* GetContentsRootView() { return NULL; } + virtual views::RootView* GetContentsRootView() { return NULL; } // Toolbars and such --------------------------------------------------------- |