| 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_prefs.h" | |
| 12 #include "chrome/browser/extensions/extension_service.h" | 11 #include "chrome/browser/extensions/extension_service.h" |
| 13 #include "chrome/browser/extensions/extension_system_factory.h" | 12 #include "chrome/browser/extensions/extension_system_factory.h" |
| 14 #include "chrome/browser/extensions/install_tracker.h" | 13 #include "chrome/browser/extensions/install_tracker.h" |
| 15 #include "chrome/browser/extensions/install_tracker_factory.h" | 14 #include "chrome/browser/extensions/install_tracker_factory.h" |
| 16 #include "chrome/browser/ui/app_list/recommended_apps_observer.h" | 15 #include "chrome/browser/ui/app_list/recommended_apps_observer.h" |
| 17 #include "chrome/common/pref_names.h" | 16 #include "chrome/common/pref_names.h" |
| 17 #include "extensions/browser/extension_prefs.h" |
| 18 #include "extensions/browser/pref_names.h" | 18 #include "extensions/browser/pref_names.h" |
| 19 #include "extensions/common/extension.h" | 19 #include "extensions/common/extension.h" |
| 20 #include "extensions/common/extension_set.h" | 20 #include "extensions/common/extension_set.h" |
| 21 | 21 |
| 22 namespace app_list { | 22 namespace app_list { |
| 23 | 23 |
| 24 namespace { | 24 namespace { |
| 25 | 25 |
| 26 struct AppSortInfo { | 26 struct AppSortInfo { |
| 27 AppSortInfo() : app(NULL) {} | 27 AppSortInfo() : app(NULL) {} |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 } | 129 } |
| 130 | 130 |
| 131 void RecommendedApps::OnAppsReordered() {} | 131 void RecommendedApps::OnAppsReordered() {} |
| 132 | 132 |
| 133 void RecommendedApps::OnAppInstalledToAppList( | 133 void RecommendedApps::OnAppInstalledToAppList( |
| 134 const std::string& extension_id) {} | 134 const std::string& extension_id) {} |
| 135 | 135 |
| 136 void RecommendedApps::OnShutdown() {} | 136 void RecommendedApps::OnShutdown() {} |
| 137 | 137 |
| 138 } // namespace app_list | 138 } // namespace app_list |
| OLD | NEW |