| 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 // Show only apps result in app list search. | |
| 11 // TODO(xiyuan): Create an app_list_switches.cc to put all app list switches. | |
| 12 const char kAppListShowAppsOnly[] = "app-list-show-apps-only"; | |
| 13 | |
| 14 // Enable keyboard shortcuts useful for debugging. | 10 // Enable keyboard shortcuts useful for debugging. |
| 15 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; | 11 const char kAshDebugShortcuts[] = "ash-debug-shortcuts"; |
| 16 | 12 |
| 17 // Enables the Oak tree viewer. | 13 // Enables the Oak tree viewer. |
| 18 const char kAshEnableOak[] = "ash-enable-oak"; | 14 const char kAshEnableOak[] = "ash-enable-oak"; |
| 19 | 15 |
| 20 // Enable extended desktop. | 16 // Enable extended desktop. |
| 21 const char kAshExtendedDesktop[] = "ash-extended-desktop"; | 17 const char kAshExtendedDesktop[] = "ash-extended-desktop"; |
| 22 | 18 |
| 23 // Disable using Ash notifications. | 19 // Disable using Ash notifications. |
| (...skipping 15 matching lines...) Expand all Loading... |
| 39 // Standard hardware reports releases immediately after presses. If set, we | 35 // Standard hardware reports releases immediately after presses. If set, we |
| 40 // lock the screen or shutdown the system immediately in response to a press | 36 // lock the screen or shutdown the system immediately in response to a press |
| 41 // instead of displaying an interactive animation. | 37 // instead of displaying an interactive animation. |
| 42 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; | 38 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; |
| 43 | 39 |
| 44 // Avoid drawing drop shadows under windows. | 40 // Avoid drawing drop shadows under windows. |
| 45 const char kAuraNoShadows[] = "aura-no-shadows"; | 41 const char kAuraNoShadows[] = "aura-no-shadows"; |
| 46 | 42 |
| 47 } // namespace switches | 43 } // namespace switches |
| 48 } // namespace ash | 44 } // namespace ash |
| OLD | NEW |