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

Unified Diff: extensions/browser/image_loader_unittest.cc

Issue 2839373003: struct UnloadedExtensionInfo -> enum UnloadedExtensionInfoReason (Closed)
Patch Set: Rebase Created 3 years, 8 months 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: extensions/browser/image_loader_unittest.cc
diff --git a/extensions/browser/image_loader_unittest.cc b/extensions/browser/image_loader_unittest.cc
index fe21d301d970446ee7bb4b4f702c1f3a23ee303c..8762c03011445021532898c726e2ca72e0206f6f 100644
--- a/extensions/browser/image_loader_unittest.cc
+++ b/extensions/browser/image_loader_unittest.cc
@@ -160,8 +160,9 @@ TEST_F(ImageLoaderTest, DeleteExtensionWhileWaitingForCache) {
EXPECT_EQ(0, image_loaded_count());
// Send out notification the extension was uninstalled.
- ExtensionRegistry::Get(browser_context())->TriggerOnUnloaded(
- extension.get(), UnloadedExtensionInfo::REASON_UNINSTALL);
+ ExtensionRegistry::Get(browser_context())
+ ->TriggerOnUnloaded(extension.get(),
+ UnloadedExtensionReason::REASON_UNINSTALL);
// Chuck the extension, that way if anyone tries to access it we should crash
// or get valgrind errors.

Powered by Google App Engine
This is Rietveld 408576698