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

Side by Side Diff: ash/ash_switches.cc

Issue 10690031: Turn of ash notification tray by default for M21. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 5 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
« no previous file with comments | « ash/ash_switches.h ('k') | ash/system/power/tray_power.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // Show only apps result in app list search. 10 // Show only apps result in app list search.
11 // TODO(xiyuan): Create an app_list_switches.cc to put all app list switches. 11 // TODO(xiyuan): Create an app_list_switches.cc to put all app list switches.
12 const char kAppListShowAppsOnly[] = "app-list-show-apps-only"; 12 const char kAppListShowAppsOnly[] = "app-list-show-apps-only";
13 13
14 // Enables the Oak tree viewer. 14 // Enables the Oak tree viewer.
15 const char kAshEnableOak[] = "ash-enable-oak"; 15 const char kAshEnableOak[] = "ash-enable-oak";
16 16
17 // Enable extended desktop. 17 // Enable extended desktop.
18 const char kAshExtendedDesktop[] = "ash-extended-desktop"; 18 const char kAshExtendedDesktop[] = "ash-extended-desktop";
19 19
20 // Disable using Ash notifications. 20 // Use Ash notifications.
21 const char kAshNotifyDisabled[] = "ash-notify-disabled"; 21 const char kAshNotify[] = "ash-notify";
22 22
23 // Enables the heads-up display for tracking touch points. 23 // Enables the heads-up display for tracking touch points.
24 const char kAshTouchHud[] = "ash-touch-hud"; 24 const char kAshTouchHud[] = "ash-touch-hud";
25 25
26 // If present animations are disabled. 26 // If present animations are disabled.
27 const char kAshWindowAnimationsDisabled[] = "ash-window-animations-disabled"; 27 const char kAshWindowAnimationsDisabled[] = "ash-window-animations-disabled";
28 28
29 // Use Google-style dialog box frames. 29 // Use Google-style dialog box frames.
30 const char kAuraGoogleDialogFrames[] = "aura-google-dialog-frames"; 30 const char kAuraGoogleDialogFrames[] = "aura-google-dialog-frames";
31 31
32 // (Most) Chrome OS hardware reports ACPI power button releases correctly. 32 // (Most) Chrome OS hardware reports ACPI power button releases correctly.
33 // Standard hardware reports releases immediately after presses. If set, we 33 // Standard hardware reports releases immediately after presses. If set, we
34 // lock the screen or shutdown the system immediately in response to a press 34 // lock the screen or shutdown the system immediately in response to a press
35 // instead of displaying an interactive animation. 35 // instead of displaying an interactive animation.
36 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; 36 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button";
37 37
38 // Avoid drawing drop shadows under windows. 38 // Avoid drawing drop shadows under windows.
39 const char kAuraNoShadows[] = "aura-no-shadows"; 39 const char kAuraNoShadows[] = "aura-no-shadows";
40 40
41 // Use Aura to manage windows of type WINDOW_TYPE_PANEL. 41 // Use Aura to manage windows of type WINDOW_TYPE_PANEL.
42 const char kAuraPanelManager[] = "aura-panels"; 42 const char kAuraPanelManager[] = "aura-panels";
43 43
44 } // namespace switches 44 } // namespace switches
45 } // namespace ash 45 } // namespace ash
OLDNEW
« no previous file with comments | « ash/ash_switches.h ('k') | ash/system/power/tray_power.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698