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

Side by Side Diff: ash/ash_switches.cc

Issue 975943002: Implemented screen rotation animation experiment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed outstanding comments from Patch set 1 & 2. Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/ash_switches.h" 5 #include "ash/ash_switches.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 8
9 namespace ash { 9 namespace ash {
10 namespace switches { 10 namespace switches {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 "ash-enable-magnifier-key-scroller"; 48 "ash-enable-magnifier-key-scroller";
49 #endif 49 #endif
50 50
51 // Enables mirrored screen. 51 // Enables mirrored screen.
52 const char kAshEnableMirroredScreen[] = "ash-enable-mirrored-screen"; 52 const char kAshEnableMirroredScreen[] = "ash-enable-mirrored-screen";
53 53
54 // Enables quick, non-cancellable locking of the screen when in maximize mode. 54 // Enables quick, non-cancellable locking of the screen when in maximize mode.
55 const char kAshEnablePowerButtonQuickLock[] = 55 const char kAshEnablePowerButtonQuickLock[] =
56 "ash-enable-power-button-quick-lock"; 56 "ash-enable-power-button-quick-lock";
57 57
58 // Specifies the screen rotation animation to use.
oshima 2015/03/06 20:59:32 nit: Can you list the possible values with the poi
bruthig 2015/03/09 21:04:27 Done.
59 const char kAshEnableScreenRotationAnimation[] =
60 "ash-screen-rotation-animation";
61
58 // Enables software based mirroring. 62 // Enables software based mirroring.
59 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring"; 63 const char kAshEnableSoftwareMirroring[] = "ash-enable-software-mirroring";
60 64
61 // Enables touch view testing. 65 // Enables touch view testing.
62 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this 66 // TODO(skuhne): Remove TOGGLE_TOUCH_VIEW_TESTING accelerator once this
63 // flag is removed. 67 // flag is removed.
64 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing"; 68 const char kAshEnableTouchViewTesting[] = "ash-enable-touch-view-testing";
65 69
66 // When this flag is set, system sounds will be played whether the 70 // When this flag is set, system sounds will be played whether the
67 // ChromeVox is enabled or not. 71 // ChromeVox is enabled or not.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 104
101 #if defined(OS_WIN) 105 #if defined(OS_WIN)
102 // Force Ash to open its root window on the desktop, even on Windows 8 where 106 // Force Ash to open its root window on the desktop, even on Windows 8 where
103 // it would normally end up in metro. 107 // it would normally end up in metro.
104 const char kForceAshToDesktop[] = "ash-force-desktop"; 108 const char kForceAshToDesktop[] = "ash-force-desktop";
105 109
106 #endif 110 #endif
107 111
108 } // namespace switches 112 } // namespace switches
109 } // namespace ash 113 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698