Chromium Code Reviews| 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) |