diff options
author | jamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-08 17:11:04 +0000 |
---|---|---|
committer | jamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-08 17:11:04 +0000 |
commit | c73d1338b77657f56ef3257a06804cc25df9ea1b (patch) | |
tree | c32627d10292ace1537249c864c0be5a52d4ab9d /ash/focus_cycler.cc | |
parent | 54f297ebc4172d1a9db1db8f769054a1e2adc756 (diff) | |
download | chromium_src-c73d1338b77657f56ef3257a06804cc25df9ea1b.zip chromium_src-c73d1338b77657f56ef3257a06804cc25df9ea1b.tar.gz chromium_src-c73d1338b77657f56ef3257a06804cc25df9ea1b.tar.bz2 |
Ash: Remove compact window mode.
Remove MultipleWindowIndicatorButton
Clean up OpaqueBrowserFrameView
Remove CompactBrowserFrameView
Remove ash/wm/compact_layout_manager and compact_status_area_layout_manager
Remove window mode switches
Remove window mode from ash::Shell
Remove ShellDelegate::CycleOrder
Remove ShellDelegate::GetOverrideWindowMode
Remove all outside calls to Shell::IsWindowModeCompact
BUG=117284
TEST=existing tests
Review URL: https://chromiumcodereview.appspot.com/9630002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125625 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 6a62757b..29dea55 100644 --- a/ash/focus_cycler.cc +++ b/ash/focus_cycler.cc @@ -64,7 +64,7 @@ void FocusCycler::RotateFocus(Direction direction) { // Activate the browser window. const std::vector<aura::Window*>& windows = Shell::GetInstance()->delegate()->GetCycleWindowList( - ShellDelegate::SOURCE_LAUNCHER, ShellDelegate::ORDER_MRU); + ShellDelegate::SOURCE_LAUNCHER); if (!windows.empty()) { aura::client::GetActivationClient(Shell::GetRootWindow())-> ActivateWindow(windows[0]); |