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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1164483003: Allow startup with missing V8 snapshot file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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:
Download patch
« net/proxy/proxy_resolver_v8.cc ('K') | « net/proxy/proxy_resolver_v8.cc ('k') | 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 0e7f4d2ed9837d8b52ca42ab7487695075620fac..15df5051fc00ded334fc9a74bb94444c29d2987c 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -45047,6 +45047,12 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<summary>Time spent in scavenging phase of GC.</summary>
</histogram>
+<histogram name="V8.Initializer.LoadV8Natives.Result"
+ enum="V8InitializerLoadV8NativesResult">
+ <owner>oth@chromium.org</owner>
+ <summary>Results from natives loading.</summary>
+</histogram>
rmcilroy 2015/06/01 14:06:31 According to Orion the current UMA didn't show muc
Erik Corry Chromium.org 2015/06/02 11:18:53 Sounds right
+
<histogram name="V8.Initializer.LoadV8Snapshot.Result"
enum="V8InitializerLoadV8SnapshotResult">
<owner>oth@chromium.org</owner>
@@ -66394,6 +66400,13 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="6" label="CHECKSUM_MISMATCH">Reject due to checksum mismatch</int>
</enum>
+<enum name="V8InitializerLoadV8NativesResult" type="int">
+ <int value="0" label="SUCCESS">Load succeeded</int>
+ <int value="1" label="FAILED_OPEN">Failure to open natives file</int>
+ <int value="2" label="FAILED_MAP">Failed to map natives</int>
+ <int value="3" label="FAILED_VERIFY">Failed to verify natives</int>
+</enum>
+
<enum name="V8InitializerLoadV8SnapshotResult" type="int">
<int value="0" label="SUCCESS">Load succeeded</int>
<int value="1" label="FAILED_OPEN">Failure to open snapshot file</int>
« net/proxy/proxy_resolver_v8.cc ('K') | « net/proxy/proxy_resolver_v8.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698