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

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

Issue 663543003: Fix low-memory devices crashing on Chrome start up during UMA recodring (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix recipe trybots failures Created 6 years, 2 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
« no previous file with comments | « base/base.gypi ('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 25b660fd2b02852c21bef815079d45913b85795f..eb5c2e2c5f6658f186936b9cae4e9cf7d9177fca 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -2707,8 +2707,8 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<summary>Is low memory device.</summary>
</histogram>
-<histogram name="ChromiumAndroidLinker.LibraryLoadFromApkSupported"
- enum="BooleanSupported">
+<histogram name="ChromiumAndroidLinker.LibraryLoadFromApkStatus"
+ enum="LibraryLoadFromApkStatus">
<owner>petrcermak@chromium.org</owner>
<summary>
Whether the device supports loading a library directly from the APK file.
@@ -40097,11 +40097,6 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="1" label="Success"/>
</enum>
-<enum name="BooleanSupported" type="int">
- <int value="0" label="Not supported"/>
- <int value="1" label="Supported"/>
-</enum>
-
<enum name="BooleanSuppressed" type="int">
<int value="0" label="No suppressions"/>
<int value="1" label="Suppressed"/>
@@ -46379,6 +46374,13 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="256" label="FILE_NOT_SPECIFIED"/>
</enum>
+<enum name="LibraryLoadFromApkStatus" type="int">
+ <int value="0" label="Unknown"/>
+ <int value="1" label="Not supported"/>
+ <int value="2" label="Supported"/>
+ <int value="3" label="Successful"/>
+</enum>
+
<enum name="LinkMonitorFailureType" type="int">
<int value="0" label="Local MAC Address Not Found"/>
<int value="1" label="Client Startup Failure"/>
« no previous file with comments | « base/base.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698