| Index: chrome/browser/extensions/extension_context_menu_browsertest.cc
|
| ===================================================================
|
| --- chrome/browser/extensions/extension_context_menu_browsertest.cc (revision 113231)
|
| +++ chrome/browser/extensions/extension_context_menu_browsertest.cc (working copy)
|
| @@ -156,9 +156,9 @@
|
| // Returns a pointer to the currently loaded extension with |name|, or null
|
| // if not found.
|
| const Extension* GetExtensionNamed(std::string name) {
|
| - const ExtensionList* extensions =
|
| + const ExtensionSet* extensions =
|
| browser()->profile()->GetExtensionService()->extensions();
|
| - ExtensionList::const_iterator i;
|
| + ExtensionSet::const_iterator i;
|
| for (i = extensions->begin(); i != extensions->end(); ++i) {
|
| if ((*i)->name() == name) {
|
| return *i;
|
|
|