diff options
Diffstat (limited to 'chrome/views/window.cc')
-rw-r--r-- | chrome/views/window.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/views/window.cc b/chrome/views/window.cc index 6171b3a..b4b71c2 100644 --- a/chrome/views/window.cc +++ b/chrome/views/window.cc @@ -22,7 +22,7 @@ #include "generated_resources.h" -namespace ChromeViews { +namespace views { // static HCURSOR Window::nwse_cursor_ = NULL; @@ -503,7 +503,7 @@ void Window::SetInitialFocus() { if (!focus_on_creation_) return; - ChromeViews::View* v = window_delegate_->GetInitiallyFocusedView(); + View* v = window_delegate_->GetInitiallyFocusedView(); if (v) { v->RequestFocus(); } else { @@ -658,5 +658,5 @@ void Window::InitClass() { } } -} // namespace ChromeViews +} // namespace views |