| Index: chrome/browser/extensions/extension_event_router.cc
|
| diff --git a/chrome/browser/extensions/extension_event_router.cc b/chrome/browser/extensions/extension_event_router.cc
|
| index 8b27f22c2f3535faf026373814c1797faa6f6683..041d5669427b61405b2b0b37d1246e1d78de64ae 100644
|
| --- a/chrome/browser/extensions/extension_event_router.cc
|
| +++ b/chrome/browser/extensions/extension_event_router.cc
|
| @@ -31,6 +31,7 @@
|
| #include "content/public/browser/render_process_host.h"
|
|
|
| using content::BrowserThread;
|
| +using extensions::Extension;
|
| using extensions::ExtensionAPI;
|
|
|
| namespace {
|
| @@ -487,8 +488,8 @@ void ExtensionEventRouter::Observe(
|
| }
|
| case chrome::NOTIFICATION_EXTENSION_UNLOADED: {
|
| // Remove all registered lazy listeners from our cache.
|
| - UnloadedExtensionInfo* unloaded =
|
| - content::Details<UnloadedExtensionInfo>(details).ptr();
|
| + extensions::UnloadedExtensionInfo* unloaded =
|
| + content::Details<extensions::UnloadedExtensionInfo>(details).ptr();
|
| ListenerProcess lazy_listener(NULL, unloaded->extension->id());
|
| for (ListenerMap::iterator it = lazy_listeners_.begin();
|
| it != lazy_listeners_.end(); ++it) {
|
|
|