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

Unified Diff: chrome/browser/extensions/renderer_initialization_browsertest.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: chrome/browser/extensions/renderer_initialization_browsertest.cc
diff --git a/chrome/browser/extensions/renderer_initialization_browsertest.cc b/chrome/browser/extensions/renderer_initialization_browsertest.cc
index 139e9395ee17e550cd64cbd9a963626f1495c173..154c7268cbf2a4960c4d87679d090720d1da7be2 100644
--- a/chrome/browser/extensions/renderer_initialization_browsertest.cc
+++ b/chrome/browser/extensions/renderer_initialization_browsertest.cc
@@ -27,8 +27,8 @@ IN_PROC_BROWSER_TEST_F(ExtensionBrowserTest,
url, content::Referrer(), WindowOpenDisposition::NEW_FOREGROUND_TAB,
ui::PAGE_TRANSITION_TYPED, false));
// Without waiting for the tab to finish, unload the extension.
- extension_service()->UnloadExtension(extension->id(),
- UnloadedExtensionInfo::REASON_TERMINATE);
+ extension_service()->UnloadExtension(
+ extension->id(), UnloadedExtensionReason::REASON_TERMINATE);
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
// Wait for the web contents to stop loading.

Powered by Google App Engine
This is Rietveld 408576698