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

Unified Diff: chrome/browser/pdf_unsupported_feature.cc

Issue 7314020: Update UMA user actions parsing, primarily to include WebUI metrics. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Style cleanup Created 9 years, 5 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/pdf_unsupported_feature.cc
diff --git a/chrome/browser/pdf_unsupported_feature.cc b/chrome/browser/pdf_unsupported_feature.cc
index 0e68c0a978d379bcfc8eb9d0c8aff175239a6fa9..74012930bd5f266b0d65504fe39804cb6e9d76e2 100644
--- a/chrome/browser/pdf_unsupported_feature.cc
+++ b/chrome/browser/pdf_unsupported_feature.cc
@@ -349,8 +349,9 @@ bool PDFUnsupportedFeatureInfoBarDelegate::OnYes() {
}
void PDFUnsupportedFeatureInfoBarDelegate::OnNo() {
- UserMetrics::RecordAction(UserMetricsAction(reader_installed_ ?
- "PDF_UseReaderInfoBarCancel" : "PDF_InstallReaderInfoBarCancel"));
+ UserMetrics::RecordAction(reader_installed_ ?
+ UserMetricsAction("PDF_UseReaderInfoBarCancel") :
+ UserMetricsAction("PDF_InstallReaderInfoBarCancel"));
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698