| Index: sky/engine/bindings/core/v8/custom/V8ElementCustom.cpp
|
| diff --git a/sky/engine/bindings/core/v8/custom/V8ElementCustom.cpp b/sky/engine/bindings/core/v8/custom/V8ElementCustom.cpp
|
| index 3093b8e1503fdd637807c59b79e3d3a2a9e9d53a..7d6f651dabe96f1552327e30200271752e2ab715 100644
|
| --- a/sky/engine/bindings/core/v8/custom/V8ElementCustom.cpp
|
| +++ b/sky/engine/bindings/core/v8/custom/V8ElementCustom.cpp
|
| @@ -40,7 +40,6 @@
|
| #include "sky/engine/bindings/core/v8/V8BindingMacros.h"
|
| #include "sky/engine/core/animation/ElementAnimation.h"
|
| #include "sky/engine/core/dom/Element.h"
|
| -#include "sky/engine/core/frame/UseCounter.h"
|
| #include "sky/engine/wtf/GetPtr.h"
|
|
|
| namespace blink {
|
| @@ -181,7 +180,6 @@ void V8Element::animateMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& i
|
| // [MeasureAs=ElementAnimateKeyframeListEffectNoTiming]
|
| // AnimationPlayer animate(sequence<Dictionary> effect);
|
| if (info[0]->IsArray()) {
|
| - UseCounter::count(callingExecutionContext(isolate), UseCounter::ElementAnimateKeyframeListEffectNoTiming);
|
| animate2Method(info);
|
| return;
|
| }
|
| @@ -212,14 +210,12 @@ void V8Element::animateMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& i
|
| // [MeasureAs=ElementAnimateKeyframeListEffectObjectTiming]
|
| // AnimationPlayer animate(sequence<Dictionary> effect, Dictionary timing);
|
| if (info[0]->IsArray() && info[1]->IsObject()) {
|
| - UseCounter::count(callingExecutionContext(isolate), UseCounter::ElementAnimateKeyframeListEffectObjectTiming);
|
| animate6Method(info);
|
| return;
|
| }
|
| // [MeasureAs=ElementAnimateKeyframeListEffectDoubleTiming]
|
| // AnimationPlayer animate(sequence<Dictionary> effect, double timing);
|
| if (info[0]->IsArray()) {
|
| - UseCounter::count(callingExecutionContext(isolate), UseCounter::ElementAnimateKeyframeListEffectDoubleTiming);
|
| animate5Method(info);
|
| return;
|
| }
|
|
|