summaryrefslogtreecommitdiffstats
path: root/views/focus
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-24 23:01:45 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-24 23:01:45 +0000
commit74dd2037fe17e9b86b095444425dd93ac19faa4b (patch)
tree73933628636520a9ec9aa4c44a3dcadb66da1c5c /views/focus
parent13274e77cb24e79a976577671faf942ae1408394 (diff)
downloadchromium_src-74dd2037fe17e9b86b095444425dd93ac19faa4b.zip
chromium_src-74dd2037fe17e9b86b095444425dd93ac19faa4b.tar.gz
chromium_src-74dd2037fe17e9b86b095444425dd93ac19faa4b.tar.bz2
These files were meant to go with my change here http://codereview.chromium.org/6577017
BUG=72040 TEST=none TBR=sky git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75983 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/focus')
-rw-r--r--views/focus/focus_manager.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/views/focus/focus_manager.h b/views/focus/focus_manager.h
index e58577a..46a867e 100644
--- a/views/focus/focus_manager.h
+++ b/views/focus/focus_manager.h
@@ -54,17 +54,17 @@
// the focus traversal traverse down the focus hierarchy to enter the nested
// RootView. In the example mentioned above, the NativeControl overrides
// GetFocusTraversable() and returns hwnd_view_container_->GetRootView().
-// - call RootView::SetFocusTraversableParent() on the nested RootView and point
-// it to the outter RootView. This is used when the focus goes out of the
+// - call Widget::SetFocusTraversableParent() on the nested RootView and point
+// it to the outer RootView. This is used when the focus goes out of the
// nested RootView. In the example:
-// hwnd_view_container_->GetRootView()->SetFocusTraversableParent(
+// hwnd_view_container_->GetWidget()->SetFocusTraversableParent(
// native_control->GetRootView());
// - call RootView::SetFocusTraversableParentView() on the nested RootView with
// the parent view that directly contains the native window. This is needed
// when traversing up from the nested RootView to know which view to start
// with when going to the next/previous view.
// In our example:
-// hwnd_view_container_->GetRootView()->SetFocusTraversableParent(
+// hwnd_view_container_->GetWidget()->SetFocusTraversableParent(
// native_control);
//
// Note that FocusTraversable do not have to be RootViews: AccessibleToolbarView