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

Side by Side Diff: ash/ash_switches.cc

Issue 11361274: Add NetworkStateListDetailedView (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 | Annotate | Revision Log
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 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 const char kAshDisablePanelFitting[] = "ash-disable-panel-fitting"; 44 const char kAshDisablePanelFitting[] = "ash-disable-panel-fitting";
45 45
46 // Enable advanced gestures (e.g. for window management). 46 // Enable advanced gestures (e.g. for window management).
47 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; 47 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures";
48 48
49 #if defined(OS_LINUX) 49 #if defined(OS_LINUX)
50 // Enable memory monitoring. 50 // Enable memory monitoring.
51 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor"; 51 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor";
52 #endif 52 #endif
53 53
54 // Enables the Oak tree viewer. 54 // Enables the Oak tree viewer.
pneubeck (no reviews) 2012/11/21 13:34:45 adapt the comment
stevenjb 2012/11/27 00:58:18 Moved to chromeos_switches in a separate CL (with
55 const char kAshEnableNetworkStateHandler[] = "ash-network-state-handler";
56
57 // Enables the Oak tree viewer.
55 const char kAshEnableOak[] = "ash-enable-oak"; 58 const char kAshEnableOak[] = "ash-enable-oak";
56 59
57 // Enables showing the tray bubble by dragging on the shelf. 60 // Enables showing the tray bubble by dragging on the shelf.
58 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; 61 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging";
59 62
60 // Enables experimental "immersive" mode, a nearly-fullscreen view of the web 63 // Enables experimental "immersive" mode, a nearly-fullscreen view of the web
61 // content without a tab strip or omnibox. 64 // content without a tab strip or omnibox.
62 const char kAshImmersive[] = "ash-immersive"; 65 const char kAshImmersive[] = "ash-immersive";
63 66
64 // Enables creating a launcher per display. 67 // Enables creating a launcher per display.
(...skipping 24 matching lines...) Expand all
89 // Standard hardware reports releases immediately after presses. If set, we 92 // Standard hardware reports releases immediately after presses. If set, we
90 // lock the screen or shutdown the system immediately in response to a press 93 // lock the screen or shutdown the system immediately in response to a press
91 // instead of displaying an interactive animation. 94 // instead of displaying an interactive animation.
92 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; 95 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button";
93 96
94 // Avoid drawing drop shadows under windows. 97 // Avoid drawing drop shadows under windows.
95 const char kAuraNoShadows[] = "aura-no-shadows"; 98 const char kAuraNoShadows[] = "aura-no-shadows";
96 99
97 } // namespace switches 100 } // namespace switches
98 } // namespace ash 101 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698