summaryrefslogtreecommitdiffstats
path: root/views/focus/focus_manager.h
diff options
context:
space:
mode:
authoryutak@chromium.org <yutak@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-15 18:00:04 +0000
committeryutak@chromium.org <yutak@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-15 18:00:04 +0000
commit176c8f3187a3b956ad2ec58648e50e83762b88db (patch)
tree8706e070cab76c4b6599d1b22e952691f7442c5e /views/focus/focus_manager.h
parentd9fa25b165cfbc788d30f44d0d450f804a791aec (diff)
downloadchromium_src-176c8f3187a3b956ad2ec58648e50e83762b88db.zip
chromium_src-176c8f3187a3b956ad2ec58648e50e83762b88db.tar.gz
chromium_src-176c8f3187a3b956ad2ec58648e50e83762b88db.tar.bz2
Fix focus traversal cycle.
This change makes traversal order of focus cycle consistent between forward and backward traversal. This is a partial fix for issue 6785. BUG=http://crbug.com/6785 TEST=Move the focus to the find bar, and push [Shift]+[Tab]. The focus should not cycle inside the find bar, but go out to the omnibox (or somewhere outside the find bar). Review URL: http://codereview.chromium.org/125130 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18402 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/focus/focus_manager.h')
-rw-r--r--views/focus/focus_manager.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/views/focus/focus_manager.h b/views/focus/focus_manager.h
index 59e9b3b..fb48188 100644
--- a/views/focus/focus_manager.h
+++ b/views/focus/focus_manager.h
@@ -299,9 +299,6 @@ class FocusManager {
// Returns the next focusable view.
View* GetNextFocusableView(View* starting_view, bool reverse, bool dont_loop);
- // Returns the last view of the focus traversal hierarchy.
- View* FindLastFocusableView();
-
// Returns the focusable view found in the FocusTraversable specified starting
// at the specified view. This traverses down along the FocusTraversable
// hierarchy.