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/views/focus_manager.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/views/focus_manager.h')
-rw-r--r-- | chrome/views/focus_manager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/views/focus_manager.h b/chrome/views/focus_manager.h index e12457f..767edf7 100644 --- a/chrome/views/focus_manager.h +++ b/chrome/views/focus_manager.h @@ -18,7 +18,7 @@ // // There are 2 types of focus: // - the native focus, which is the focus that an HWND has. -// - the view focus, which is the focus that a ChromeViews::View has. +// - the view focus, which is the focus that a views::View has. // // Each native view must register with their Focus Manager so the focus manager // gets notified when they are focused (and keeps track of the native focus) and @@ -72,7 +72,7 @@ // Note that FocusTraversable do not have to be RootViews: TabContents is // FocusTraversable. -namespace ChromeViews { +namespace views { class View; class RootView; @@ -325,7 +325,7 @@ class FocusManager : public NotificationObserver { DISALLOW_EVIL_CONSTRUCTORS(FocusManager); }; -} +} // namespace views #endif // CHROME_VIEWS_FOCUS_MANAGER_H__ |