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

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

Issue 684453003: Add UMA for testing whether the Chromium library was page aligned in the APK file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed histogram type to BooleanAligned 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 4eecf8f46c6041e95e1d89a85f6669fdf7a1b21e..8df2417a98191465f00177f60e7164eb795c7622 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -2707,6 +2707,16 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<summary>Is low memory device.</summary>
</histogram>
+<histogram name="ChromiumAndroidLinker.LibraryAlignedInApk"
+ enum="BooleanAligned">
+ <owner>petrcermak@chromium.org</owner>
+ <summary>
+ Whether the Chromium library is page aligned in the APK file. The
+ functionality is checked and reported during every Chromium browser process
+ start up if direct library loading from the APK file is enabled.
+ </summary>
+</histogram>
+
<histogram name="ChromiumAndroidLinker.LibraryLoadFromApkStatus"
enum="LibraryLoadFromApkStatus">
<owner>petrcermak@chromium.org</owner>
@@ -39902,6 +39912,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="1" label="Accepted"/>
</enum>
+<enum name="BooleanAligned" type="int">
+ <int value="0" label="Not aligned"/>
+ <int value="1" label="Aligned"/>
+</enum>
+
<enum name="BooleanAttempted" type="int">
<int value="0" label="Not Attempted"/>
<int value="1" label="Attempted"/>

Powered by Google App Engine
This is Rietveld 408576698