diff options
Diffstat (limited to 'ash/wm/app_list_controller.cc')
-rw-r--r-- | ash/wm/app_list_controller.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ash/wm/app_list_controller.cc b/ash/wm/app_list_controller.cc index 7fcf76c..02afc69 100644 --- a/ash/wm/app_list_controller.cc +++ b/ash/wm/app_list_controller.cc @@ -139,6 +139,12 @@ aura::Window* AppListController::GetWindow() { return is_visible_ && view_ ? view_->GetWidget()->GetNativeWindow() : NULL; } +void AppListController::SetDragAndDropHostOfCurrentAppList( + app_list::ApplicationDragAndDropHost* drag_and_drop_host) { + if (view_ && is_visible_) + view_->SetDragAndDropHostOfCurrentAppList(drag_and_drop_host); +} + //////////////////////////////////////////////////////////////////////////////// // AppListController, private: |