OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/browser/ui/views/aura/chrome_shell_delegate.h" | 5 #include "chrome/browser/ui/views/aura/chrome_shell_delegate.h" |
6 | 6 |
7 #include "chrome/browser/profiles/profile_manager.h" | 7 #include "chrome/browser/profiles/profile_manager.h" |
8 #include "chrome/browser/ui/browser.h" | 8 #include "chrome/browser/ui/browser.h" |
9 #include "chrome/browser/ui/views/aura/app_list_window.h" | 9 #include "chrome/browser/ui/views/aura/app_list_window.h" |
| 10 #include "chrome/browser/ui/views/aura/app_list/app_list_model_builder.h" |
| 11 #include "chrome/browser/ui/views/aura/app_list/app_list_view_delegate.h" |
10 #include "chrome/browser/ui/views/aura/status_area_host_aura.h" | 12 #include "chrome/browser/ui/views/aura/status_area_host_aura.h" |
11 #include "chrome/browser/ui/views/frame/browser_view.h" | 13 #include "chrome/browser/ui/views/frame/browser_view.h" |
12 #include "ui/aura/window.h" | 14 #include "ui/aura/window.h" |
13 #include "ui/aura_shell/launcher/launcher_types.h" | 15 #include "ui/aura_shell/launcher/launcher_types.h" |
14 #include "ui/aura_shell/window_util.h" | 16 #include "ui/aura_shell/window_util.h" |
15 | 17 |
16 // static | 18 // static |
17 ChromeShellDelegate* ChromeShellDelegate::instance_ = NULL; | 19 ChromeShellDelegate* ChromeShellDelegate::instance_ = NULL; |
18 | 20 |
19 ChromeShellDelegate::ChromeShellDelegate() { | 21 ChromeShellDelegate::ChromeShellDelegate() { |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 return status_area_widget; | 59 return status_area_widget; |
58 } | 60 } |
59 | 61 |
60 void ChromeShellDelegate::RequestAppListWidget( | 62 void ChromeShellDelegate::RequestAppListWidget( |
61 const gfx::Rect& bounds, | 63 const gfx::Rect& bounds, |
62 const SetWidgetCallback& callback) { | 64 const SetWidgetCallback& callback) { |
63 // AppListWindow deletes itself when closed. | 65 // AppListWindow deletes itself when closed. |
64 new AppListWindow(bounds, callback); | 66 new AppListWindow(bounds, callback); |
65 } | 67 } |
66 | 68 |
| 69 void ChromeShellDelegate::BuildAppListModel(aura_shell::AppListModel* model) { |
| 70 AppListModelBuilder builder(ProfileManager::GetDefaultProfile(), |
| 71 model); |
| 72 builder.Build(); |
| 73 } |
| 74 |
| 75 aura_shell::AppListViewDelegate* |
| 76 ChromeShellDelegate::CreateAppListViewDelegate() { |
| 77 // Shell will own the created delegate. |
| 78 return new AppListViewDelegate; |
| 79 } |
| 80 |
67 void ChromeShellDelegate::LauncherItemClicked( | 81 void ChromeShellDelegate::LauncherItemClicked( |
68 const aura_shell::LauncherItem& item) { | 82 const aura_shell::LauncherItem& item) { |
69 aura_shell::ActivateWindow(item.window); | 83 aura_shell::ActivateWindow(item.window); |
70 } | 84 } |
71 | 85 |
72 bool ChromeShellDelegate::ConfigureLauncherItem( | 86 bool ChromeShellDelegate::ConfigureLauncherItem( |
73 aura_shell::LauncherItem* item) { | 87 aura_shell::LauncherItem* item) { |
74 BrowserView* view = BrowserView::GetBrowserViewForNativeWindow(item->window); | 88 BrowserView* view = BrowserView::GetBrowserViewForNativeWindow(item->window); |
75 return view && | 89 return view && |
76 ShouldCreateLauncherItemForBrowser(view->browser(), &(item->type)); | 90 ShouldCreateLauncherItemForBrowser(view->browser(), &(item->type)); |
77 } | 91 } |
OLD | NEW |