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

Unified Diff: ash/ash_switches.cc

Issue 9316005: Aura: Rework window mode flags to compact/overlapping/managed (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: with review feedback Created 8 years, 11 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/ash_switches.h ('k') | ash/shell.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/ash_switches.cc
diff --git a/ash/ash_switches.cc b/ash/ash_switches.cc
index f7ef7d1b1350d0db80e4ac0692897877737589d0..068e1738ae462b2e68ad8b4335d97a82b224469a 100644
--- a/ash/ash_switches.cc
+++ b/ash/ash_switches.cc
@@ -32,18 +32,19 @@ const char kAuraNoShadows[] = "aura-no-shadows";
const char kAuraTranslucentFrames[] = "aura-translucent-frames";
// Use a custom window style, e.g. --aura-window-mode=compact.
-// When this flag is not passed we default to "normal" mode.
+// When this flag is not passed we default to "overlapping" mode.
const char kAuraWindowMode[] = "aura-window-mode";
// Show only a single maximized window, like traditional non-Aura builds.
// Useful for low-resolution screens, such as on laptops.
const char kAuraWindowModeCompact[] = "compact";
-// Default window management with multiple draggable windows.
-const char kAuraWindowModeNormal[] = "normal";
+// Smart window management with workspace manager that automatically lays out
+// windows.
+const char kAuraWindowModeManaged[] = "managed";
-// Use Aura-style workspace window dragging and sizing.
-const char kAuraWorkspaceManager[] = "aura-workspace-manager";
+// Traditional window management with multiple draggable windows.
+const char kAuraWindowModeOverlapping[] = "overlapping";
} // namespace switches
} // namespace ash
« no previous file with comments | « ash/ash_switches.h ('k') | ash/shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698