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

Side by Side Diff: ash/ash_switches.cc

Issue 11345017: Create ash memory monitor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: New files 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 // Variation of boot animation that uses Tween::EASE_OUT_2. 10 // Variation of boot animation that uses Tween::EASE_OUT_2.
(...skipping 10 matching lines...) Expand all
21 21
22 // Disables boot animation v2, go back to v1. 22 // Disables boot animation v2, go back to v1.
23 const char kAshDisableBootAnimation2[] = "ash-disable-boot-animation2"; 23 const char kAshDisableBootAnimation2[] = "ash-disable-boot-animation2";
24 24
25 // Disables panel fitting (used for mirror mode). 25 // Disables panel fitting (used for mirror mode).
26 const char kAshDisablePanelFitting[] = "ash-disable-panel-fitting"; 26 const char kAshDisablePanelFitting[] = "ash-disable-panel-fitting";
27 27
28 // Enable advanced gestures (e.g. for window management). 28 // Enable advanced gestures (e.g. for window management).
29 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; 29 const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures";
30 30
31 // Enable memory monitoring.
32 const char kAshEnableMemoryMonitor[] = "ash-enable-memory-monitor";
33
31 // Enables the Oak tree viewer. 34 // Enables the Oak tree viewer.
32 const char kAshEnableOak[] = "ash-enable-oak"; 35 const char kAshEnableOak[] = "ash-enable-oak";
33 36
34 // Enables showing the tray bubble by dragging on the shelf. 37 // Enables showing the tray bubble by dragging on the shelf.
35 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; 38 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging";
36 39
37 // Enables creating a launcher per display. 40 // Enables creating a launcher per display.
38 const char kAshLauncherPerDisplay[] = "ash-launcher-per-display"; 41 const char kAshLauncherPerDisplay[] = "ash-launcher-per-display";
39 42
40 // If present new lock animations are enabled. 43 // If present new lock animations are enabled.
(...skipping 18 matching lines...) Expand all
59 // Standard hardware reports releases immediately after presses. If set, we 62 // Standard hardware reports releases immediately after presses. If set, we
60 // lock the screen or shutdown the system immediately in response to a press 63 // lock the screen or shutdown the system immediately in response to a press
61 // instead of displaying an interactive animation. 64 // instead of displaying an interactive animation.
62 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; 65 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button";
63 66
64 // Avoid drawing drop shadows under windows. 67 // Avoid drawing drop shadows under windows.
65 const char kAuraNoShadows[] = "aura-no-shadows"; 68 const char kAuraNoShadows[] = "aura-no-shadows";
66 69
67 } // namespace switches 70 } // namespace switches
68 } // namespace ash 71 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698