| 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 the Oak tree viewer. | 10 // Enables the Oak tree viewer. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 // lock the screen or shutdown the system immediately in response to a press | 27 // lock the screen or shutdown the system immediately in response to a press |
| 28 // instead of displaying an interactive animation. | 28 // instead of displaying an interactive animation. |
| 29 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 29 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
| 30 | 30 |
| 31 // Avoid drawing drop shadows under windows. | 31 // Avoid drawing drop shadows under windows. |
| 32 const char kAuraNoShadows[] = "aura-no-shadows"; | 32 const char kAuraNoShadows[] = "aura-no-shadows"; |
| 33 | 33 |
| 34 // Use Aura to manage windows of type WINDOW_TYPE_PANEL. | 34 // Use Aura to manage windows of type WINDOW_TYPE_PANEL. |
| 35 const char kAuraPanelManager[] = "aura-panels"; | 35 const char kAuraPanelManager[] = "aura-panels"; |
| 36 | 36 |
| 37 // Enables applist v2. | |
| 38 const char kEnableAppListV2[] = "enable-applist-v2"; | |
| 39 | |
| 40 } // namespace switches | 37 } // namespace switches |
| 41 } // namespace ash | 38 } // namespace ash |
| OLD | NEW |