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

Side by Side Diff: ash/ash_switches.cc

Issue 11093050: Move shelf/launcher/status_area_widget/panel_layout_manager to RootWindowController (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: re-added launcher.h This seems to be removed from other header it is including. Created 8 years, 2 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/display/display_controller.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 // Variation of boot animation that uses Tween::EASE_OUT_2. 10 // Variation of boot animation that uses Tween::EASE_OUT_2.
(...skipping 16 matching lines...) Expand all
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 // Enables the Oak tree viewer. 31 // Enables the Oak tree viewer.
32 const char kAshEnableOak[] = "ash-enable-oak"; 32 const char kAshEnableOak[] = "ash-enable-oak";
33 33
34 // Enables showing the tray bubble by dragging on the shelf. 34 // Enables showing the tray bubble by dragging on the shelf.
35 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; 35 const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging";
36 36
37 // Enables creating a launcher per display.
38 const char kAshLauncherPerDisplay[] = "ash-launcher-per-display";
39
37 // Specifies the layout mode and offsets for the secondary display for 40 // Specifies the layout mode and offsets for the secondary display for
38 // testing. The format is "<t|r|b|l>,<offset>" where t=TOP, r=RIGHT, 41 // testing. The format is "<t|r|b|l>,<offset>" where t=TOP, r=RIGHT,
39 // b=BOTTOM and L=LEFT. For example, 'r,-100' means the secondary display 42 // b=BOTTOM and L=LEFT. For example, 'r,-100' means the secondary display
40 // is positioned on the right with -100 offset. (above than primary) 43 // is positioned on the right with -100 offset. (above than primary)
41 const char kAshSecondaryDisplayLayout[] = "ash-secondary-display-layout"; 44 const char kAshSecondaryDisplayLayout[] = "ash-secondary-display-layout";
42 45
43 // Enables the heads-up display for tracking touch points. 46 // Enables the heads-up display for tracking touch points.
44 const char kAshTouchHud[] = "ash-touch-hud"; 47 const char kAshTouchHud[] = "ash-touch-hud";
45 48
46 // If present animations are disabled. 49 // If present animations are disabled.
47 const char kAshWindowAnimationsDisabled[] = "ash-window-animations-disabled"; 50 const char kAshWindowAnimationsDisabled[] = "ash-window-animations-disabled";
48 51
49 // Use Google-style dialog box frames. 52 // Use Google-style dialog box frames.
50 const char kAuraGoogleDialogFrames[] = "aura-google-dialog-frames"; 53 const char kAuraGoogleDialogFrames[] = "aura-google-dialog-frames";
51 54
52 // (Most) Chrome OS hardware reports ACPI power button releases correctly. 55 // (Most) Chrome OS hardware reports ACPI power button releases correctly.
53 // Standard hardware reports releases immediately after presses. If set, we 56 // Standard hardware reports releases immediately after presses. If set, we
54 // lock the screen or shutdown the system immediately in response to a press 57 // lock the screen or shutdown the system immediately in response to a press
55 // instead of displaying an interactive animation. 58 // instead of displaying an interactive animation.
56 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; 59 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button";
57 60
58 // Avoid drawing drop shadows under windows. 61 // Avoid drawing drop shadows under windows.
59 const char kAuraNoShadows[] = "aura-no-shadows"; 62 const char kAuraNoShadows[] = "aura-no-shadows";
60 63
61 } // namespace switches 64 } // namespace switches
62 } // namespace ash 65 } // namespace ash
OLDNEW
« no previous file with comments | « ash/ash_switches.h ('k') | ash/display/display_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698