summaryrefslogtreecommitdiffstats
path: root/ash/shell_delegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'ash/shell_delegate.h')
-rw-r--r--ash/shell_delegate.h13
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