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/test/ash_test_base.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/test/ash_test_base.cc')
-rw-r--r-- | ash/test/ash_test_base.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ash/test/ash_test_base.cc b/ash/test/ash_test_base.cc index 5fca288..e23ab8a 100644 --- a/ash/test/ash_test_base.cc +++ b/ash/test/ash_test_base.cc @@ -21,9 +21,6 @@ AshTestBase::~AshTestBase() { void AshTestBase::SetUp() { // Creates Shell and hook with Desktop. TestShellDelegate* delegate = new TestShellDelegate; - Shell::WindowMode window_mode = Shell::MODE_MANAGED; - if (GetOverrideWindowMode(&window_mode)) - delegate->SetOverrideWindowMode(window_mode); ash::Shell::CreateInstance(delegate); helper_.SetUp(); @@ -43,10 +40,6 @@ void AshTestBase::TearDown() { Shell::DeleteInstance(); } -bool AshTestBase::GetOverrideWindowMode(Shell::WindowMode* window_mode) { - return false; -} - void AshTestBase::RunAllPendingInMessageLoop() { helper_.RunAllPendingInMessageLoop(Shell::GetRootWindow()); } |