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

Unified Diff: chrome/browser/ui/toolbar/component_toolbar_actions_factory.cc

Issue 2839373003: struct UnloadedExtensionInfo -> enum UnloadedExtensionInfoReason (Closed)
Patch Set: Enum class 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/ui/toolbar/component_toolbar_actions_factory.cc
diff --git a/chrome/browser/ui/toolbar/component_toolbar_actions_factory.cc b/chrome/browser/ui/toolbar/component_toolbar_actions_factory.cc
index ccca4bfbc8f808d16307b5000e33b43953ce926f..804a8987f8589250051b960a8ee09f814ed71b02 100644
--- a/chrome/browser/ui/toolbar/component_toolbar_actions_factory.cc
+++ b/chrome/browser/ui/toolbar/component_toolbar_actions_factory.cc
@@ -83,6 +83,6 @@ void ComponentToolbarActionsFactory::UnloadExtension(
if (registry->enabled_extensions().Contains(extension_id)) {
service->UnloadExtension(
extension_id,
- extensions::UnloadedExtensionInfo::REASON_MIGRATED_TO_COMPONENT);
+ extensions::UnloadedExtensionReason::REASON_MIGRATED_TO_COMPONENT);
}
}

Powered by Google App Engine
This is Rietveld 408576698