diff options
author | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-24 14:37:57 +0000 |
---|---|---|
committer | skuhne@chromium.org <skuhne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-24 14:37:57 +0000 |
commit | 28fb77a6148d028bce84e9c8a62ba98c02e5484d (patch) | |
tree | c695c78df574b4a2c4d463a523a1965ecd5e536a /chrome/browser/ui/ash/app_list | |
parent | e42cb727b87b6a6d671ea686798b92ada92b3688 (diff) | |
download | chromium_src-28fb77a6148d028bce84e9c8a62ba98c02e5484d.zip chromium_src-28fb77a6148d028bce84e9c8a62ba98c02e5484d.tar.gz chromium_src-28fb77a6148d028bce84e9c8a62ba98c02e5484d.tar.bz2 |
Adding business logic for dragging items from shelf to the desktop to unpin
The new feature has to be enabled by a new flag and this part of the implementation is ...
... adding the business logic to enable the dragging and removing.
... cleaning up a few things.
The still required changes are marked with TODO's accordingly.
BUG=249081
TEST=Unittest
Review URL: https://chromiumcodereview.appspot.com/23338004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@219436 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/ash/app_list')
-rw-r--r-- | chrome/browser/ui/ash/app_list/app_list_controller_ash.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/ui/ash/app_list/app_list_controller_ash.cc b/chrome/browser/ui/ash/app_list/app_list_controller_ash.cc index 7bf0587..0beb95f 100644 --- a/chrome/browser/ui/ash/app_list/app_list_controller_ash.cc +++ b/chrome/browser/ui/ash/app_list/app_list_controller_ash.cc @@ -32,7 +32,7 @@ void AppListControllerDelegateAsh::PinApp(const std::string& extension_id) { } void AppListControllerDelegateAsh::UnpinApp(const std::string& extension_id) { - ChromeLauncherController::instance()->UnpinAppsWithID(extension_id); + ChromeLauncherController::instance()->UnpinAppWithID(extension_id); } bool AppListControllerDelegateAsh::CanPin() { |