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

Unified Diff: chrome/browser/extensions/extension_context_menu_browsertest.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/extensions/extension_context_menu_browsertest.cc
diff --git a/chrome/browser/extensions/extension_context_menu_browsertest.cc b/chrome/browser/extensions/extension_context_menu_browsertest.cc
index 616465ac261e7b37ab294c3b411a8d3e28fdc51d..a461a3ca3cfc7869525f22bf0092c09be77f9bb2 100644
--- a/chrome/browser/extensions/extension_context_menu_browsertest.cc
+++ b/chrome/browser/extensions/extension_context_menu_browsertest.cc
@@ -133,10 +133,10 @@ class ExtensionContextMenuBrowserTest : public ExtensionBrowserTest {
// Returns a pointer to the currently loaded extension with |name|, or null
// if not found.
const extensions::Extension* GetExtensionNamed(std::string name) {
- const ExtensionSet* extensions =
+ const extensions::ExtensionSet* extensions =
browser()->profile()->GetExtensionService()->extensions();
- ExtensionSet::const_iterator i;
- for (i = extensions->begin(); i != extensions->end(); ++i) {
+ for (extensions::ExtensionSet::const_iterator i = extensions->begin();
+ i != extensions->end(); ++i) {
if ((*i)->name() == name) {
return i->get();
}

Powered by Google App Engine
This is Rietveld 408576698