Index: Source/core/rendering/RenderLayerCompositor.cpp |
diff --git a/Source/core/rendering/RenderLayerCompositor.cpp b/Source/core/rendering/RenderLayerCompositor.cpp |
index d8e9ddc4be06c9625b0d8fde53686a22829d9a09..b6686194bd134be71e85f034852a2ce032c4394e 100644 |
--- a/Source/core/rendering/RenderLayerCompositor.cpp |
+++ b/Source/core/rendering/RenderLayerCompositor.cpp |
@@ -1116,7 +1116,7 @@ void RenderLayerCompositor::rebuildCompositingLayerTree(RenderLayer* layer, Vect |
if (!depth) { |
int percentageIncreaseInPixels = static_cast<int>(pixelsAddedByPromotingAllTransitions / pixelsWithoutPromotingAllTransitions * 100); |
- WebKit::Platform::current()->histogramCustomCounts("Renderer.PixelIncreaseFromTransitions", percentageIncreaseInPixels, 0, 1000, 50); |
+ blink::Platform::current()->histogramCustomCounts("Renderer.PixelIncreaseFromTransitions", percentageIncreaseInPixels, 0, 1000, 50); |
} |
} |
@@ -1169,14 +1169,14 @@ void RenderLayerCompositor::frameViewDidScroll() |
m_scrollLayer->setPosition(-scrollPosition); |
- WebKit::Platform::current()->histogramEnumeration("Renderer.AcceleratedFixedRootBackground", |
+ blink::Platform::current()->histogramEnumeration("Renderer.AcceleratedFixedRootBackground", |
ScrolledMainFrameBucket, |
AcceleratedFixedRootBackgroundHistogramMax); |
if (!m_renderView->rootBackgroundIsEntirelyFixed()) |
return; |
- WebKit::Platform::current()->histogramEnumeration("Renderer.AcceleratedFixedRootBackground", |
+ blink::Platform::current()->histogramEnumeration("Renderer.AcceleratedFixedRootBackground", |
!!fixedRootBackgroundLayer() |
? ScrolledMainFrameWithAcceleratedFixedRootBackground |
: ScrolledMainFrameWithUnacceleratedFixedRootBackground, |