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

Unified Diff: chrome/browser/extensions/extension_disabled_ui.cc

Issue 1094873002: Extensions: Switch to new permission message system, part V (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 7 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/extension_disabled_ui.cc
diff --git a/chrome/browser/extensions/extension_disabled_ui.cc b/chrome/browser/extensions/extension_disabled_ui.cc
index f1cd064337c4d153a4dca623e5e1b866f375459f..140fd6d8e586142271d05379bebeff494decc900 100644
--- a/chrome/browser/extensions/extension_disabled_ui.cc
+++ b/chrome/browser/extensions/extension_disabled_ui.cc
@@ -128,9 +128,8 @@ void ExtensionDisabledDialogDelegate::InstallUIProceed() {
}
void ExtensionDisabledDialogDelegate::InstallUIAbort(bool user_initiated) {
- std::string histogram_name = user_initiated
- ? "Extensions.Permissions_ReEnableCancel2"
- : "Extensions.Permissions_ReEnableAbort2";
+ std::string histogram_name = user_initiated ? "ReEnableCancel"
+ : "ReEnableAbort";
ExtensionService::RecordPermissionMessagesHistogram(
extension_, histogram_name.c_str());

Powered by Google App Engine
This is Rietveld 408576698