diff options
author | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-08 21:40:08 +0000 |
---|---|---|
committer | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-08 21:40:08 +0000 |
commit | 00c8469e26c18b47981a92931acbc209efa8c3e4 (patch) | |
tree | 17c1576f6737ce4d49500baf3805b92a6e4e0af0 /ash/ash_switches.cc | |
parent | 993951d6500d51ee010103c7f8727eaa900bd563 (diff) | |
download | chromium_src-00c8469e26c18b47981a92931acbc209efa8c3e4.zip chromium_src-00c8469e26c18b47981a92931acbc209efa8c3e4.tar.gz chromium_src-00c8469e26c18b47981a92931acbc209efa8c3e4.tar.bz2 |
This is the first of two patches to drag and drop items from the app list to the launcher.
Everything basically works with this patch, but two essential things are still missing:
1. The icon which gets dragged should get its own widget so that it can get visually dragged outside the app list.
2. The unit tests.
They will be send as a second patch because of:
a. The patch is already pretty big as it is.
b. I want to make get this "signed off" before continuing this route.
BUG=166429
TEST=visual, tests come with second patch
Review URL: https://chromiumcodereview.appspot.com/14533006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@199016 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/ash_switches.cc')
-rw-r--r-- | ash/ash_switches.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ash/ash_switches.cc b/ash/ash_switches.cc index 516fa60..24fef79 100644 --- a/ash/ash_switches.cc +++ b/ash/ash_switches.cc @@ -141,11 +141,15 @@ const char kAuraLegacyPowerButton[] = "aura-legacy-power-button"; // Force Ash to open its root window on the desktop, even on Windows 8 where // it would normally end up in metro. const char kForceAshToDesktop[] = "ash-force-desktop"; + #endif +// Allow items to be dragged from the app launcher list into the launcher. +const char kAshDragAndDropAppListToLauncher[] = + "ash-drag-and-drop-applist-to-launcher"; + // Enables a mode which enforces all browser & application windows to be created // in maximized mode. const char kForcedMaximizeMode[] = "forced-maximize-mode"; - } // namespace switches } // namespace ash |