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

Unified Diff: chrome/browser/ui/app_list/search/app_search_provider.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: Move ExtensionSet to extensions namespace 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/search/app_search_provider.cc
diff --git a/chrome/browser/ui/app_list/search/app_search_provider.cc b/chrome/browser/ui/app_list/search/app_search_provider.cc
index c7fc5f0ddf957bb03a001fcfe2c88b75b10ab4a1..721b94c626d0f5c03d3a0fc783b58bf32e954279 100644
--- a/chrome/browser/ui/app_list/search/app_search_provider.cc
+++ b/chrome/browser/ui/app_list/search/app_search_provider.cc
@@ -73,9 +73,9 @@ void AppSearchProvider::Start(const string16& query) {
void AppSearchProvider::Stop() {}
-void AppSearchProvider::AddApps(const ExtensionSet* extensions,
+void AppSearchProvider::AddApps(const extensions::ExtensionSet* extensions,
ExtensionService* service) {
- for (ExtensionSet::const_iterator iter = extensions->begin();
+ for (extensions::ExtensionSet::const_iterator iter = extensions->begin();
iter != extensions->end(); ++iter) {
const extensions::Extension* app = iter->get();

Powered by Google App Engine
This is Rietveld 408576698