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

Side by Side Diff: ash/ash_switches.cc

Issue 14533006: Drag and drop between app list and launcher - First patch (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Created 7 years, 7 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 // (Most) Chrome OS hardware reports ACPI power button releases correctly. 134 // (Most) Chrome OS hardware reports ACPI power button releases correctly.
135 // Standard hardware reports releases immediately after presses. If set, we 135 // Standard hardware reports releases immediately after presses. If set, we
136 // lock the screen or shutdown the system immediately in response to a press 136 // lock the screen or shutdown the system immediately in response to a press
137 // instead of displaying an interactive animation. 137 // instead of displaying an interactive animation.
138 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; 138 const char kAuraLegacyPowerButton[] = "aura-legacy-power-button";
139 139
140 #if defined(OS_WIN) 140 #if defined(OS_WIN)
141 // Force Ash to open its root window on the desktop, even on Windows 8 where 141 // Force Ash to open its root window on the desktop, even on Windows 8 where
142 // it would normally end up in metro. 142 // it would normally end up in metro.
143 const char kForceAshToDesktop[] = "ash-force-desktop"; 143 const char kForceAshToDesktop[] = "ash-force-desktop";
144
144 #endif 145 #endif
145 146
147 // Allow items to be dragged from the app launcher list into the launcher.
148 const char kAshDragAndDropAppListToLauncher[] =
149 "ash-drag-and-drop-applist-to-launcher";
150
146 // Enables a mode which enforces all browser & application windows to be created 151 // Enables a mode which enforces all browser & application windows to be created
147 // in maximized mode. 152 // in maximized mode.
148 const char kForcedMaximizeMode[] = "forced-maximize-mode"; 153 const char kForcedMaximizeMode[] = "forced-maximize-mode";
149
150 } // namespace switches 154 } // namespace switches
151 } // namespace ash 155 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698