diff options
author | harrym@chromium.org <harrym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-26 07:43:18 +0000 |
---|---|---|
committer | harrym@chromium.org <harrym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-26 07:43:18 +0000 |
commit | 3f540b4b5643a8269d8e30974011bb808fc521fb (patch) | |
tree | e8cfb120f0c6ee3f88d23687c38d9bf1df261af9 /ash/focus_cycler.cc | |
parent | 97bb45bb2e4828aef13c47b6e16147c312f31cf2 (diff) | |
download | chromium_src-3f540b4b5643a8269d8e30974011bb808fc521fb.zip chromium_src-3f540b4b5643a8269d8e30974011bb808fc521fb.tar.gz chromium_src-3f540b4b5643a8269d8e30974011bb808fc521fb.tar.bz2 |
Switch Next Window Key functionality
Switches the next window button on chromeos (f5) to act the same as alt-tab/shift-alt-tab
BUG=174035
TBR=sky@chromium.org
Review URL: https://chromiumcodereview.appspot.com/12618014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@190579 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/focus_cycler.cc')
-rw-r--r-- | ash/focus_cycler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/focus_cycler.cc b/ash/focus_cycler.cc index 80ef432..ee9d22f 100644 --- a/ash/focus_cycler.cc +++ b/ash/focus_cycler.cc @@ -17,7 +17,7 @@ namespace ash { namespace { bool HasFocusableWindow() { - return !WindowCycleController::BuildWindowList(NULL).empty(); + return !WindowCycleController::BuildWindowList(NULL, false).empty(); } } // namespace |