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

Unified Diff: chrome/browser/ui/omnibox/omnibox_edit_model.cc

Issue 19862004: [InstantExtended] Changing the histogram name since the definition of the histogram changed when th… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « no previous file | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/omnibox/omnibox_edit_model.cc
diff --git a/chrome/browser/ui/omnibox/omnibox_edit_model.cc b/chrome/browser/ui/omnibox/omnibox_edit_model.cc
index 7ade221af2ccdd09bdc4522491583bca8efca015..cb20b99bf3ee10754bbae0d105726cd80b57db7e 100644
--- a/chrome/browser/ui/omnibox/omnibox_edit_model.cc
+++ b/chrome/browser/ui/omnibox/omnibox_edit_model.cc
@@ -116,18 +116,18 @@ void RecordPercentageMatchHistogram(const string16& old_text,
if (search_term_replacement_active) {
if (transition == content::PAGE_TRANSITION_TYPED) {
UMA_HISTOGRAM_PERCENTAGE(
- "InstantExtended.PercentageMatchQuerytoURL", percent);
+ "InstantExtended.PercentageMatchV2_QuerytoURL", percent);
} else {
UMA_HISTOGRAM_PERCENTAGE(
- "InstantExtended.PercentageMatchQuerytoQuery", percent);
+ "InstantExtended.PercentageMatchV2_QuerytoQuery", percent);
}
} else {
if (transition == content::PAGE_TRANSITION_TYPED) {
UMA_HISTOGRAM_PERCENTAGE(
- "InstantExtended.PercentageMatchURLtoURL", percent);
+ "InstantExtended.PercentageMatchV2_URLtoURL", percent);
} else {
UMA_HISTOGRAM_PERCENTAGE(
- "InstantExtended.PercentageMatchURLtoQuery", percent);
+ "InstantExtended.PercentageMatchV2_URLtoQuery", percent);
}
}
}
« no previous file with comments | « no previous file | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698