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

Unified Diff: chrome/browser/chromeos/note_taking_helper_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: chrome/browser/chromeos/note_taking_helper_unittest.cc
diff --git a/chrome/browser/chromeos/note_taking_helper_unittest.cc b/chrome/browser/chromeos/note_taking_helper_unittest.cc
index 108ffa1aaa6584ebe911d681bf6c0da0c42c7e3e..4084ce95bc970c31fbf484632891d8dd2a1df945 100644
--- a/chrome/browser/chromeos/note_taking_helper_unittest.cc
+++ b/chrome/browser/chromeos/note_taking_helper_unittest.cc
@@ -259,8 +259,9 @@ class NoteTakingHelperTest : public BrowserWithTestWindowTest,
Profile* profile) {
extensions::ExtensionSystem::Get(profile)
->extension_service()
- ->UnloadExtension(extension->id(),
- extensions::UnloadedExtensionInfo::REASON_UNINSTALL);
+ ->UnloadExtension(
+ extension->id(),
+ extensions::UnloadedExtensionReason::REASON_UNINSTALL);
}
// BrowserWithTestWindowTest:

Powered by Google App Engine
This is Rietveld 408576698