| Index: chrome/browser/extensions/extension_service_unittest.cc
|
| diff --git a/chrome/browser/extensions/extension_service_unittest.cc b/chrome/browser/extensions/extension_service_unittest.cc
|
| index de103818d269610a34f5e91db2df052dff15b6b9..d96c85019430b38e84ca05bf45d6651f2f68e189 100644
|
| --- a/chrome/browser/extensions/extension_service_unittest.cc
|
| +++ b/chrome/browser/extensions/extension_service_unittest.cc
|
| @@ -95,6 +95,7 @@ using content::BrowserThread;
|
| using content::DOMStorageContext;
|
| using content::IndexedDBContext;
|
| using content::PluginService;
|
| +using extensions::Extension;
|
|
|
| namespace keys = extension_manifest_keys;
|
|
|
| @@ -523,9 +524,10 @@ class ExtensionServiceTest
|
|
|
| case chrome::NOTIFICATION_EXTENSION_UNLOADED: {
|
| const Extension* e =
|
| - content::Details<UnloadedExtensionInfo>(details)->extension;
|
| + content::Details<extensions::UnloadedExtensionInfo>(
|
| + details)->extension;
|
| unloaded_id_ = e->id();
|
| - ExtensionList::iterator i =
|
| + extensions::ExtensionList::iterator i =
|
| std::find(loaded_.begin(), loaded_.end(), e);
|
| // TODO(erikkay) fix so this can be an assert. Right now the tests
|
| // are manually calling clear() on loaded_, so this isn't doable.
|
| @@ -944,7 +946,7 @@ class ExtensionServiceTest
|
| }
|
|
|
| protected:
|
| - ExtensionList loaded_;
|
| + extensions::ExtensionList loaded_;
|
| std::string unloaded_id_;
|
| const Extension* installed_;
|
|
|
|
|