| Index: third_party/WebKit/Source/bindings/templates/constants.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/templates/constants.cpp b/third_party/WebKit/Source/bindings/templates/constants.cpp
|
| index 8814b25f7f8936797d46191ccd8de24597946cf3..06b8ae79ccb0f4ae55838d8e883a0955b4f8f61f 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/constants.cpp
|
| +++ b/third_party/WebKit/Source/bindings/templates/constants.cpp
|
| @@ -4,7 +4,6 @@
|
| {% macro constant_getter_callback(constant) %}
|
| static void {{constant.name}}ConstantGetterCallback(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>& info)
|
| {
|
| - TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMGetter");
|
| {% if constant.deprecate_as %}
|
| UseCounter::countDeprecationIfNotPrivateScript(info.GetIsolate(), currentExecutionContext(info.GetIsolate()), UseCounter::{{constant.deprecate_as}});
|
| {% endif %}
|
| @@ -21,7 +20,6 @@ static void {{constant.name}}ConstantGetterCallback(v8::Local<v8::Name>, const v
|
| {% else %}
|
| v8SetReturnValueInt(info, {{constant.value}});
|
| {% endif %}
|
| - TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution");
|
| }
|
| {% endmacro %}
|
|
|
|
|