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

Unified Diff: chrome/browser/background/background_application_list_model.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/background/background_application_list_model.cc
diff --git a/chrome/browser/background/background_application_list_model.cc b/chrome/browser/background/background_application_list_model.cc
index 01579569654d1e1eb47f98f16f7ba1f18a859864..53d39b1f424f8c4ad72b8460fa291684d5696868 100644
--- a/chrome/browser/background/background_application_list_model.cc
+++ b/chrome/browser/background/background_application_list_model.cc
@@ -88,9 +88,9 @@ class BackgroundApplicationListModel::Application
namespace {
void GetServiceApplications(ExtensionService* service,
ExtensionList* applications_result) {
- const ExtensionSet* extensions = service->extensions();
+ const extensions::ExtensionSet* extensions = service->extensions();
- for (ExtensionSet::const_iterator cursor = extensions->begin();
+ for (extensions::ExtensionSet::const_iterator cursor = extensions->begin();
cursor != extensions->end();
++cursor) {
const Extension* extension = cursor->get();
@@ -103,7 +103,7 @@ void GetServiceApplications(ExtensionService* service,
// Walk the list of terminated extensions also (just because an extension
// crashed doesn't mean we should ignore it).
extensions = service->terminated_extensions();
- for (ExtensionSet::const_iterator cursor = extensions->begin();
+ for (extensions::ExtensionSet::const_iterator cursor = extensions->begin();
cursor != extensions->end();
++cursor) {
const Extension* extension = cursor->get();

Powered by Google App Engine
This is Rietveld 408576698