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

Unified Diff: ash/ash_switches.cc

Issue 109663002: Disables docked windows by default in M33 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years 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/wm/dock/docked_window_layout_manager_unittest.cc » ('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 88f569d3b3e1b9ceb86e7d6c59e534fae769028a..22856ba3bea56ce37218d2f2f1ee126a9412ed1b 100644
--- a/ash/ash_switches.cc
+++ b/ash/ash_switches.cc
@@ -93,8 +93,8 @@ const char kAshEnableAlternateFrameCaptionButtonStyle[] =
// main monitor as internal.
const char kAshEnableBrightnessControl[] = "ash-enable-brightness-control";
-// Disable ability to dock windows at the desktop edge.
-const char kAshDisableDockedWindows[] = "ash-disable-docked-windows";
+// Enable ability to dock windows at the desktop edge.
+const char kAshEnableDockedWindows[] = "ash-enable-docked-windows";
sky 2013/12/09 17:03:08 Move this to match position in header.
// Disable dragging items off the shelf to unpin them.
const char kAshDisableDragOffShelf[] = "ash-disable-drag-off-shelf";
@@ -250,7 +250,7 @@ bool UseOverviewMode() {
}
bool UseDockedWindows() {
- return !CommandLine::ForCurrentProcess()->HasSwitch(kAshDisableDockedWindows);
+ return CommandLine::ForCurrentProcess()->HasSwitch(kAshEnableDockedWindows);
}
#if defined(OS_CHROMEOS)
« no previous file with comments | « ash/ash_switches.h ('k') | ash/wm/dock/docked_window_layout_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698