| Index: chrome/browser/extensions/image_loading_tracker_unittest.cc
|
| diff --git a/chrome/browser/extensions/image_loading_tracker_unittest.cc b/chrome/browser/extensions/image_loading_tracker_unittest.cc
|
| index edbbceedf72cec5471acecb2366383e17e5795c0..9fd69f3314ffd011477fe7ddc9c46251d10fe3d7 100644
|
| --- a/chrome/browser/extensions/image_loading_tracker_unittest.cc
|
| +++ b/chrome/browser/extensions/image_loading_tracker_unittest.cc
|
| @@ -21,6 +21,7 @@
|
| #include "ui/gfx/size.h"
|
|
|
| using content::BrowserThread;
|
| +using extensions::Extension;
|
|
|
| class ImageLoadingTrackerTest : public testing::Test,
|
| public ImageLoadingTracker::Observer {
|
| @@ -168,12 +169,12 @@ TEST_F(ImageLoadingTrackerTest, DeleteExtensionWhileWaitingForCache) {
|
| EXPECT_EQ(0, image_loaded_count());
|
|
|
| // Send out notification the extension was uninstalled.
|
| - UnloadedExtensionInfo details(extension.get(),
|
| - extension_misc::UNLOAD_REASON_UNINSTALL);
|
| + extensions::UnloadedExtensionInfo details(extension.get(),
|
| + extension_misc::UNLOAD_REASON_UNINSTALL);
|
| content::NotificationService::current()->Notify(
|
| chrome::NOTIFICATION_EXTENSION_UNLOADED,
|
| content::NotificationService::AllSources(),
|
| - content::Details<UnloadedExtensionInfo>(&details));
|
| + content::Details<extensions::UnloadedExtensionInfo>(&details));
|
|
|
| // Chuck the extension, that way if anyone tries to access it we should crash
|
| // or get valgrind errors.
|
|
|