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

Unified Diff: components/navigation_metrics/navigation_metrics.cc

Issue 1167403002: Add blob scheme in Navigation Histograms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added 'blob' scheme in the Navigation.MainFrameScheme and Navigation.MainFrameSchemeDifferentPage h… Created 5 years, 6 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: components/navigation_metrics/navigation_metrics.cc
diff --git a/components/navigation_metrics/navigation_metrics.cc b/components/navigation_metrics/navigation_metrics.cc
index 214c75fc1d2c60adc9657631ee65c462555d9bf5..cf72ce45313d7b4fc7ed7bd62aec5d70e59518c0 100644
--- a/components/navigation_metrics/navigation_metrics.cc
+++ b/components/navigation_metrics/navigation_metrics.cc
@@ -19,6 +19,7 @@ enum Scheme {
SCHEME_JAVASCRIPT,
SCHEME_ABOUT,
SCHEME_CHROME,
+ SCHEME_BLOB,
SCHEME_MAX,
};
@@ -32,6 +33,7 @@ const char* const kSchemeNames[] = {
url::kJavaScriptScheme,
url::kAboutScheme,
"chrome",
+ url::kBlobScheme,
"max",
};
« 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