| Index: Source/core/animation/css/CSSAnimations.cpp
|
| diff --git a/Source/core/animation/css/CSSAnimations.cpp b/Source/core/animation/css/CSSAnimations.cpp
|
| index 6a36278544e0abcdc3876d0a7da91a801b8d875a..cd0af54af26edab4b73203b9cb4e0023057417a1 100644
|
| --- a/Source/core/animation/css/CSSAnimations.cpp
|
| +++ b/Source/core/animation/css/CSSAnimations.cpp
|
| @@ -114,7 +114,7 @@ static PassRefPtrWillBeRawPtr<StringKeyframeEffectModel> createKeyframeEffect(St
|
|
|
| for (CSSPropertyID property : specifiedPropertiesForUseCounter) {
|
| ASSERT(property != CSSPropertyInvalid);
|
| - blink::Platform::current()->histogramSparse("WebCore.Animation.CSSProperties", UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(property));
|
| + Platform::current()->histogramSparse("WebCore.Animation.CSSProperties", UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(property));
|
| }
|
|
|
| // Merge duplicate keyframes.
|
| @@ -447,7 +447,7 @@ void CSSAnimations::maybeApplyPendingUpdate(Element* element)
|
| runningTransition.player = player;
|
| m_transitions.set(id, runningTransition);
|
| ASSERT(id != CSSPropertyInvalid);
|
| - blink::Platform::current()->histogramSparse("WebCore.Animation.CSSProperties", UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(id));
|
| + Platform::current()->histogramSparse("WebCore.Animation.CSSProperties", UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(id));
|
| }
|
| }
|
|
|
|
|