OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/recommended_apps.h" | 5 #include "chrome/browser/ui/app_list/recommended_apps.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "chrome/browser/extensions/extension_service.h" | 11 #include "chrome/browser/extensions/extension_service.h" |
12 #include "chrome/browser/extensions/extension_system_factory.h" | 12 #include "chrome/browser/extensions/extension_system_factory.h" |
13 #include "chrome/browser/extensions/install_tracker.h" | 13 #include "chrome/browser/extensions/install_tracker.h" |
14 #include "chrome/browser/extensions/install_tracker_factory.h" | 14 #include "chrome/browser/extensions/install_tracker_factory.h" |
| 15 #include "chrome/browser/profiles/profile.h" |
15 #include "chrome/browser/ui/app_list/recommended_apps_observer.h" | 16 #include "chrome/browser/ui/app_list/recommended_apps_observer.h" |
16 #include "chrome/common/pref_names.h" | 17 #include "chrome/common/pref_names.h" |
17 #include "extensions/browser/extension_prefs.h" | 18 #include "extensions/browser/extension_prefs.h" |
18 #include "extensions/browser/pref_names.h" | 19 #include "extensions/browser/pref_names.h" |
19 #include "extensions/common/extension.h" | 20 #include "extensions/common/extension.h" |
20 #include "extensions/common/extension_set.h" | 21 #include "extensions/common/extension_set.h" |
21 | 22 |
22 namespace app_list { | 23 namespace app_list { |
23 | 24 |
24 namespace { | 25 namespace { |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 } | 130 } |
130 | 131 |
131 void RecommendedApps::OnAppsReordered() {} | 132 void RecommendedApps::OnAppsReordered() {} |
132 | 133 |
133 void RecommendedApps::OnAppInstalledToAppList( | 134 void RecommendedApps::OnAppInstalledToAppList( |
134 const std::string& extension_id) {} | 135 const std::string& extension_id) {} |
135 | 136 |
136 void RecommendedApps::OnShutdown() {} | 137 void RecommendedApps::OnShutdown() {} |
137 | 138 |
138 } // namespace app_list | 139 } // namespace app_list |
OLD | NEW |