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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1406123010: reland 2: Switch back to field trial. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't use Mach on 10.6. Created 5 years, 1 month 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 | « content/browser/loader/resource_buffer.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 32064bce14ab6a29005954557c147bcb3460ab61..6324dbc56d936e45a5598db3568739a0e568b06a 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -30036,6 +30036,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="OSX.SharedMemory.Mechanism" enum="OSXSharedMemoryMechanism">
+ <owner>erikchen@chromium.org</owner>
+ <summary>
+ A histogram entry is emitted each time a base::SharedMemory object is
+ constructed. The value of the entry indicates the mechanism used to back the
+ shared memory region.
+ </summary>
+</histogram>
+
<histogram name="OSX.SystemHotkeyMap.LoadSuccess" enum="BooleanSuccess">
<owner>erikchen@chromium.org</owner>
<summary>
@@ -67978,6 +67987,15 @@ To add a new entry, add it with any value and run test to compute valid value.
</int>
</enum>
+<enum name="OSXSharedMemoryMechanism" type="int">
+ <int value="0" label="POSIX">
+ The shared memory region is backed by a POSIX fd.
+ </int>
+ <int value="1" label="MACH">
+ The shared memory region is backed by a Mach memory object.
+ </int>
+</enum>
+
<enum name="OtherPossibleUsernamesUsage" type="int">
<int value="0" label="Nothing to Autofill"/>
<int value="1" label="No other possible usernames"/>
« no previous file with comments | « content/browser/loader/resource_buffer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698