Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1907)

Unified Diff: chrome/browser/ui/app_list/recommended_apps.cc

Issue 102103005: Move c/c/e/extension_set to top-level extensions/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/app_list/recommended_apps.cc
diff --git a/chrome/browser/ui/app_list/recommended_apps.cc b/chrome/browser/ui/app_list/recommended_apps.cc
index 5f95486107e4d32928d62e2990c50b6c70531b6e..6e11212f2884300a1c87331563b0c17f70ef3eec 100644
--- a/chrome/browser/ui/app_list/recommended_apps.cc
+++ b/chrome/browser/ui/app_list/recommended_apps.cc
@@ -16,6 +16,7 @@
#include "chrome/browser/ui/app_list/recommended_apps_observer.h"
#include "chrome/common/pref_names.h"
#include "extensions/common/extension.h"
+#include "extensions/common/extension_set.h"
namespace app_list {
@@ -70,8 +71,8 @@ void RecommendedApps::Update() {
extensions::ExtensionPrefs* prefs = service->extension_prefs();
std::vector<AppSortInfo> sorted_apps;
- const ExtensionSet* extensions = service->extensions();
- for (ExtensionSet::const_iterator app = extensions->begin();
+ const extensions::ExtensionSet* extensions = service->extensions();
+ for (extensions::ExtensionSet::const_iterator app = extensions->begin();
app != extensions->end(); ++app) {
if (!(*app)->ShouldDisplayInAppLauncher())
continue;

Powered by Google App Engine
This is Rietveld 408576698