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 // Use the in-progress uber system tray. | 10 // Use the in-progress uber system tray. |
11 const char kAshUberTray[] = "ash-uber-tray"; | 11 const char kAshUberTray[] = "ash-uber-tray"; |
12 | 12 |
| 13 // Enables the Oak tree viewer. |
| 14 const char kAshEnableOak[] = "ash-enable-oak"; |
| 15 |
13 // Use Google-style dialog box frames. | 16 // Use Google-style dialog box frames. |
14 const char kAuraGoogleDialogFrames[] = "aura-google-dialog-frames"; | 17 const char kAuraGoogleDialogFrames[] = "aura-google-dialog-frames"; |
15 | 18 |
16 // (Most) Chrome OS hardware reports ACPI power button releases correctly. | 19 // (Most) Chrome OS hardware reports ACPI power button releases correctly. |
17 // Standard hardware reports releases immediately after presses. If set, we | 20 // Standard hardware reports releases immediately after presses. If set, we |
18 // lock the screen or shutdown the system immediately in response to a press | 21 // lock the screen or shutdown the system immediately in response to a press |
19 // instead of displaying an interactive animation. | 22 // instead of displaying an interactive animation. |
20 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 23 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
21 | 24 |
22 // Avoid drawing drop shadows under windows. | 25 // Avoid drawing drop shadows under windows. |
23 const char kAuraNoShadows[] = "aura-no-shadows"; | 26 const char kAuraNoShadows[] = "aura-no-shadows"; |
24 | 27 |
25 // If present animations are disabled. | 28 // If present animations are disabled. |
26 const char kAuraWindowAnimationsDisabled[] = "aura-window-animations-disabled"; | 29 const char kAuraWindowAnimationsDisabled[] = "aura-window-animations-disabled"; |
27 | 30 |
28 // Use Aura to manage windows of type WINDOW_TYPE_PANEL. | 31 // Use Aura to manage windows of type WINDOW_TYPE_PANEL. |
29 const char kAuraPanelManager[] = "aura-panels"; | 32 const char kAuraPanelManager[] = "aura-panels"; |
30 | 33 |
31 } // namespace switches | 34 } // namespace switches |
32 } // namespace ash | 35 } // namespace ash |
OLD | NEW |