| Index: ui/app_list/views/app_list_view.cc
|
| diff --git a/ui/app_list/views/app_list_view.cc b/ui/app_list/views/app_list_view.cc
|
| index e81bfdf1aa8d02add9b10ea78b925744a929a4d3..5f9491987ed1df5993be9d674207ba3e61c72889 100644
|
| --- a/ui/app_list/views/app_list_view.cc
|
| +++ b/ui/app_list/views/app_list_view.cc
|
| @@ -128,13 +128,17 @@ void AppListView::SetAnchorPoint(const gfx::Point& anchor_point) {
|
| SizeToContents(); // Repositions view relative to the anchor.
|
| }
|
|
|
| +void AppListView::SetDragAndDropHostOfCurrentAppList(
|
| + app_list::ApplicationDragAndDropHost* drag_and_drop_host) {
|
| + app_list_main_view_->SetDragAndDropHostOfCurrentAppList(drag_and_drop_host);
|
| +}
|
| +
|
| void AppListView::ShowWhenReady() {
|
| app_list_main_view_->ShowAppListWhenReady();
|
| }
|
|
|
| void AppListView::Close() {
|
| app_list_main_view_->Close();
|
| -
|
| if (delegate_)
|
| delegate_->Dismiss();
|
| else
|
|
|