OLD | NEW |
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 namespace ash { | 7 namespace ash { |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 // Enables an animated transition from the boot splash screen (Chrome logo on a | 10 // Enables an animated transition from the boot splash screen (Chrome logo on a |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 // Enable new network handlers in the status area. | 63 // Enable new network handlers in the status area. |
64 const char kAshEnableNewNetworkStatusArea[] = | 64 const char kAshEnableNewNetworkStatusArea[] = |
65 "ash-enable-new-network-status-area"; | 65 "ash-enable-new-network-status-area"; |
66 | 66 |
67 // Disable the per application grouping version of the launcher. | 67 // Disable the per application grouping version of the launcher. |
68 const char kAshDisablePerAppLauncher[] = "ash-disable-per-app-launcher"; | 68 const char kAshDisablePerAppLauncher[] = "ash-disable-per-app-launcher"; |
69 | 69 |
70 // Enables the Oak tree viewer. | 70 // Enables the Oak tree viewer. |
71 const char kAshEnableOak[] = "ash-enable-oak"; | 71 const char kAshEnableOak[] = "ash-enable-oak"; |
72 | 72 |
73 // Disable the new launcher version temporarily by default for the M25 release. | |
74 const char kAshEnablePerAppLauncher[] = "ash-enable-per-app-launcher"; | |
75 | |
76 // Enables showing the tray bubble by dragging on the shelf. | 73 // Enables showing the tray bubble by dragging on the shelf. |
77 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; | 74 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; |
78 | 75 |
79 // Enables immersive mode. | 76 // Enables immersive mode. |
80 const char kAshImmersiveMode[] = "ash-immersive-mode"; | 77 const char kAshImmersiveMode[] = "ash-immersive-mode"; |
81 | 78 |
82 // Enables immersive mode and hides the small tab indicators at the top of the | 79 // Enables immersive mode and hides the small tab indicators at the top of the |
83 // screen. | 80 // screen. |
84 const char kAshImmersiveHideTabIndicators[] = | 81 const char kAshImmersiveHideTabIndicators[] = |
85 "ash-immersive-hide-tab-indicators"; | 82 "ash-immersive-hide-tab-indicators"; |
(...skipping 23 matching lines...) Expand all Loading... |
109 const char kAuraNoShadows[] = "aura-no-shadows"; | 106 const char kAuraNoShadows[] = "aura-no-shadows"; |
110 | 107 |
111 // Overrides all displays' orientation. The value should be one of 0 | 108 // Overrides all displays' orientation. The value should be one of 0 |
112 // (normal), 1 (90 degrees clockwise), 2 (180 degrees) or 3 (270 | 109 // (normal), 1 (90 degrees clockwise), 2 (180 degrees) or 3 (270 |
113 // degrees clockwise). | 110 // degrees clockwise). |
114 const char kAshOverrideDisplayOrientation[] = | 111 const char kAshOverrideDisplayOrientation[] = |
115 "ash-override-display-orientation"; | 112 "ash-override-display-orientation"; |
116 | 113 |
117 } // namespace switches | 114 } // namespace switches |
118 } // namespace ash | 115 } // namespace ash |
OLD | NEW |