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

Unified Diff: tools/metrics/histograms/histograms.xml

Issue 15011004: Move Instant related histograms to tools/metrics/histograms/histograms.xml (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged in new values Created 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index fe74e916040867cd9fb5bb3a5ec3373e2e413133..cf8c07d9f740dd541959af3754b11b8677e589e7 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -878,6 +878,29 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="Instant.InstantControllerEvent" enum="InstantControllerEvent">
+ <summary>
+ Records various events of interest in the InstantController. E.g. When URLs
+ are blacklisted.
+ </summary>
+</histogram>
+
+<histogram name="Instant.SessionsStorageNamespace"
+ enum="InstantSessionStorageNamespace">
+ <summary>
+ How often an Instant preview is committed onto a different tab than it was
+ created from.
+ </summary>
+</histogram>
+
+<histogram name="Instant.TimeToFirstShow" units="milliseconds">
+ <summary>
+ The time between the first Omnibox interaction and when the Instant preview
+ shows. If the instant preview was already showing when the user interacted
+ with the omnibox, this histogram is not recorded.
+ </summary>
+</histogram>
+
<histogram name="InstantExtended.InstantNavigation"
enum="InstantExtended_InstantNavigation">
<summary>
@@ -886,6 +909,21 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="InstantExtended.OptInState" enum="InstantExtended_OptInState">
+ <summary>
+ Records, on startup, whether the user has chosen to opt-in to or opt-out of
+ InstantExtended via chrome://flags.
+ </summary>
+</histogram>
+
+<histogram name="InstantExtended.PrefValue" enum="BooleanEnabled">
+ <summary>
+ Records, on startup, the value of the &quot;Allow your search engine to
+ provide Instant result&quot; preference setting for the first profile
+ loaded.
+ </summary>
+</histogram>
+
<histogram name="LevelDBEnv.IDB.IOError" enum="LevelDBIOErrorMethods">
<summary>
Methods where leveldb's Chromium environment has IO errors when being used
@@ -9331,6 +9369,12 @@ other types of suffix sets.
<int value="4" label="Open()"/>
</enum>
+<enum name="InstantControllerEvent" type="int">
+ <int value="0" label="URL_ADDED_TO_BLACKLIST"/>
+ <int value="1" label="URL_REMOVED_FROM_BLACKLIST"/>
+ <int value="2" label="URL_BLOCKED_BY_BLACKLIST"/>
+</enum>
+
<enum name="InstantExtended_InstantNavigation" type="int">
<int value="0" label="Local click"/>
<int value="1" label="Local submit"/>
@@ -9339,6 +9383,20 @@ other types of suffix sets.
<int value="4" label="Non-extended navigation"/>
</enum>
+<enum name="InstantExtended_OptInState" type="int">
+ <int value="0" label="Default"/>
+ <int value="1" label="Opted in"/>
+ <int value="2" label="Opted out"/>
+ <int value="3" label="Opted in local"/>
+ <int value="4" label="Opted out local"/>
+ <int value="5" label="Opted out both"/>
+</enum>
+
+<enum name="InstantSessionStorageNamespace" type="int">
+ <int value="0" label="different"/>
+ <int value="1" label="identical"/>
+</enum>
+
<enum name="IntelMaxMicroArchitecture" type="int">
<int value="0" label="Pentium"/>
<int value="1" label="SSE"/>
@@ -11185,6 +11243,12 @@ other types of suffix sets.
<affected-histogram name="NetConnectivity.Pipeline.Success"/>
</fieldtrial>
+<fieldtrial name="Instant">
+ <group name="Extended" label="Suggestions + Results"/>
+ <group name="Instant" label="Results"/>
+ <affected-histogram name="Instant.SessionsStorageNamespace"/>
+</fieldtrial>
+
<fieldtrial name="LateBindingExperiment">
<group name="disable_late_binding" label="socket late binding is disabled"/>
<group name="enable_late_binding" label="socket late binding is enabled"/>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698