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/shell_delegate.h | |
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/shell_delegate.h')
-rw-r--r-- | ash/shell_delegate.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/ash/shell_delegate.h b/ash/shell_delegate.h index c5ec41b..8e9076e 100644 --- a/ash/shell_delegate.h +++ b/ash/shell_delegate.h @@ -34,11 +34,6 @@ class SystemTrayDelegate; // Delegate of the Shell. class ASH_EXPORT ShellDelegate { public: - enum CycleOrder { - ORDER_MRU, // Most recently used - ORDER_LINEAR - }; - // Source requesting the window list. enum CycleSource { // Windows are going to be used for alt-tab (or F5). @@ -72,8 +67,7 @@ class ASH_EXPORT ShellDelegate { // at the front of the list. Otherwise any order may be returned. The list // does not contain NULL pointers. virtual std::vector<aura::Window*> GetCycleWindowList( - CycleSource source, - CycleOrder order) const = 0; + CycleSource source) const = 0; // Invoked to start taking partial screenshot. virtual void StartPartialScreenshot( @@ -86,11 +80,6 @@ class ASH_EXPORT ShellDelegate { // Creates a system-tray delegate. Shell takes ownership of the delegate. virtual SystemTrayDelegate* CreateSystemTrayDelegate(SystemTray* tray) = 0; - - // Returns true if the delegate wants to override the window mode. Used only - // by testing. Returning false causes the shell to determine the default. - // TODO(beng): This can probably be removed once we only have one window mode. - virtual bool GetOverrideWindowMode(Shell::WindowMode* window_mode) = 0; }; } // namespace ash |