OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/app_list/app_list_view_delegate.h" | 5 #include "chrome/browser/ui/app_list/app_list_view_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/app_list/app_list_controller_delegate.h" | 8 #include "chrome/browser/ui/app_list/app_list_controller_delegate.h" |
9 #include "chrome/browser/ui/app_list/apps_model_builder.h" | 9 #include "chrome/browser/ui/app_list/apps_model_builder.h" |
10 #include "chrome/browser/ui/app_list/chrome_app_list_item.h" | 10 #include "chrome/browser/ui/app_list/chrome_app_list_item.h" |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 | 56 |
57 void AppListViewDelegate::OnBeginExtensionInstall( | 57 void AppListViewDelegate::OnBeginExtensionInstall( |
58 const std::string& extension_id, | 58 const std::string& extension_id, |
59 const std::string& extension_name, | 59 const std::string& extension_name, |
60 const gfx::ImageSkia& installing_icon) { | 60 const gfx::ImageSkia& installing_icon) { |
61 apps_builder_->OnBeginExtensionInstall(extension_id, | 61 apps_builder_->OnBeginExtensionInstall(extension_id, |
62 extension_name, | 62 extension_name, |
63 installing_icon); | 63 installing_icon); |
64 } | 64 } |
65 | 65 |
| 66 void AppListViewDelegate::OnDownloadProgress( |
| 67 const std::string& extension_id, |
| 68 int percent_downloaded) { |
| 69 apps_builder_->OnDownloadProgress(extension_id, percent_downloaded); |
| 70 } |
| 71 |
66 void AppListViewDelegate::ActivateAppListItem( | 72 void AppListViewDelegate::ActivateAppListItem( |
67 app_list::AppListItemModel* item, | 73 app_list::AppListItemModel* item, |
68 int event_flags) { | 74 int event_flags) { |
69 content::RecordAction(content::UserMetricsAction("AppList_ClickOnApp")); | 75 content::RecordAction(content::UserMetricsAction("AppList_ClickOnApp")); |
70 static_cast<ChromeAppListItem*>(item)->Activate(event_flags); | 76 static_cast<ChromeAppListItem*>(item)->Activate(event_flags); |
71 } | 77 } |
72 | 78 |
73 void AppListViewDelegate::StartSearch() { | 79 void AppListViewDelegate::StartSearch() { |
74 if (search_builder_.get()) | 80 if (search_builder_.get()) |
75 search_builder_->StartSearch(); | 81 search_builder_->StartSearch(); |
(...skipping 23 matching lines...) Expand all Loading... |
99 controller_->DismissView(); | 105 controller_->DismissView(); |
100 } | 106 } |
101 | 107 |
102 void AppListViewDelegate::ViewClosing() { | 108 void AppListViewDelegate::ViewClosing() { |
103 controller_->ViewClosing(); | 109 controller_->ViewClosing(); |
104 } | 110 } |
105 | 111 |
106 void AppListViewDelegate::ViewActivationChanged(bool active) { | 112 void AppListViewDelegate::ViewActivationChanged(bool active) { |
107 controller_->ViewActivationChanged(active); | 113 controller_->ViewActivationChanged(active); |
108 } | 114 } |
OLD | NEW |