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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 23874003: Histogram definitions for Stacking Container opt-in measurements. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase for landing Created 7 years, 3 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 | « 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 996f2986a39f4facca2fb45c387b314e9b35bdb0..b42d86ac853c31d93da3f63af26279a55e5007af 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -12671,6 +12671,16 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="Renderer.CompositedScrolling" enum="CompositedScrolling">
+ <summary>
+ Total count of the number of RenderLayers which are scrollable areas, need
+ to be promoted to stacking containers, and will use composited scrolling.
+ Each bucket is sampled at most once per RenderLayer, when the RenderLayer
+ first becomes scrollable, first needs to become a stacking container, and
+ first uses composited scrolling, respectively.
+ </summary>
+</histogram>
+
<histogram name="Renderer.DrawDuration" units="milliseconds">
<summary>The time it takes for the compositor to draw a frame.</summary>
</histogram>
@@ -18581,6 +18591,12 @@ other types of suffix sets.
<int value="30" label="More Than 30"/>
</enum>
+<enum name="CompositedScrolling" type="int">
+ <int value="0" label="Is scrollable area"/>
+ <int value="1" label="Needs to be stacking container"/>
+ <int value="2" label="Will use composited scrolling"/>
+</enum>
+
<enum name="ConnectionType" type="int">
<summary>
Connection type as defined in net/base/connection_type_histograms.h
« 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