Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1129)

Unified Diff: ash/shell_delegate.h

Issue 9630002: Ash: Remove compact window mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: OpaqueBrowserFrameView, MultipleWindowIndicatorButton Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/shell/shell_main.cc ('k') | ash/shell_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shell_delegate.h
diff --git a/ash/shell_delegate.h b/ash/shell_delegate.h
index c5ec41b25b87c57d86593a34602fdbf8cc555b17..8e9076e6465f7578140728966ff00104b9e748a8 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
« no previous file with comments | « ash/shell/shell_main.cc ('k') | ash/shell_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698