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

Side by Side Diff: ash/ash_switches.cc

Issue 12548014: Enable ash new network status area by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix tests, ash_shell Created 7 years, 9 months 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 // can change display settings. 44 // can change display settings.
45 const char kAshDisableDisplayChangeLimiter[] = 45 const char kAshDisableDisplayChangeLimiter[] =
46 "ash-disable-display-change-limiter"; 46 "ash-disable-display-change-limiter";
47 47
48 // Disables creating a launcher per display. 48 // Disables creating a launcher per display.
49 const char kAshDisableLauncherPerDisplay[] = "ash-disable-launcher-per-display"; 49 const char kAshDisableLauncherPerDisplay[] = "ash-disable-launcher-per-display";
50 50
51 // If present new lock animations are enabled. 51 // If present new lock animations are enabled.
52 const char kAshDisableNewLockAnimations[] = "ash-disable-new-lock-animations"; 52 const char kAshDisableNewLockAnimations[] = "ash-disable-new-lock-animations";
53 53
54 // Disable new network handlers in the status area.
55 const char kAshDisableNewNetworkStatusArea[] =
56 "ash-disable-new-network-status-area";
57
54 // Disable the per application grouping version of the launcher. 58 // Disable the per application grouping version of the launcher.
55 const char kAshDisablePerAppLauncher[] = "ash-disable-per-app-launcher"; 59 const char kAshDisablePerAppLauncher[] = "ash-disable-per-app-launcher";
56 60
57 // Disables immersive fullscreen mode. 61 // Disables immersive fullscreen mode.
58 const char kAshDisableImmersiveMode[] = "ash-disable-immersive-mode"; 62 const char kAshDisableImmersiveMode[] = "ash-disable-immersive-mode";
59 63
60 // Enable advanced gestures (e.g. for window management). 64 // Enable advanced gestures (e.g. for window management).
61 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; 65 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures";
62 66
63 // Always enable brightness control. Used by machines that don't report their 67 // Always enable brightness control. Used by machines that don't report their
64 // main monitor as internal. 68 // main monitor as internal.
65 const char kAshEnableBrightnessControl[] = "ash-enable-brightness-control"; 69 const char kAshEnableBrightnessControl[] = "ash-enable-brightness-control";
66 70
67 // Enable the experiment to show all browser tabs in the browser menu of the 71 // Enable the experiment to show all browser tabs in the browser menu of the
68 // launcher. 72 // launcher.
69 const char kAshEnableFullBrowserListInLauncher[] = 73 const char kAshEnableFullBrowserListInLauncher[] =
70 "ash-enable-full-browser-list-in-launcher"; 74 "ash-enable-full-browser-list-in-launcher";
71 75
72 #if defined(OS_LINUX) 76 #if defined(OS_LINUX)
73 // Enable memory monitoring. 77 // Enable memory monitoring.
74 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor"; 78 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor";
75 #endif 79 #endif
76 80
77 // Enable new network handlers in the status area.
78 const char kAshEnableNewNetworkStatusArea[] =
79 "ash-enable-new-network-status-area";
80
81 // Enables the Oak tree viewer. 81 // Enables the Oak tree viewer.
82 const char kAshEnableOak[] = "ash-enable-oak"; 82 const char kAshEnableOak[] = "ash-enable-oak";
83 83
84 // Enables showing the tray bubble by dragging on the shelf. 84 // Enables showing the tray bubble by dragging on the shelf.
85 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; 85 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging";
86 86
87 // Enable workspace switching via a three finger vertical scroll. 87 // Enable workspace switching via a three finger vertical scroll.
88 const char kAshEnableWorkspaceScrubbing[] = "ash-enable-workspace-scrubbing"; 88 const char kAshEnableWorkspaceScrubbing[] = "ash-enable-workspace-scrubbing";
89 89
90 // Sets a window size, optional position, and optional scale factor. 90 // Sets a window size, optional position, and optional scale factor.
(...skipping 23 matching lines...) Expand all
114 const char kAshTouchHud[] = "ash-touch-hud"; 114 const char kAshTouchHud[] = "ash-touch-hud";
115 115
116 // (Most) Chrome OS hardware reports ACPI power button releases correctly. 116 // (Most) Chrome OS hardware reports ACPI power button releases correctly.
117 // Standard hardware reports releases immediately after presses. If set, we 117 // Standard hardware reports releases immediately after presses. If set, we
118 // lock the screen or shutdown the system immediately in response to a press 118 // lock the screen or shutdown the system immediately in response to a press
119 // instead of displaying an interactive animation. 119 // instead of displaying an interactive animation.
120 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; 120 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button";
121 121
122 } // namespace switches 122 } // namespace switches
123 } // namespace ash 123 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698