| Index: third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.h
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.h b/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.h
|
| index f6eff99097a129e64dc80abbd11469fdd60ce5c0..9a96c49e21488757f4334823174fdc4648d6df8c 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.h
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.h
|
| @@ -36,14 +36,14 @@ class CORE_EXPORT VoidCallbackFunctionTypedef final : public GarbageCollectedFin
|
| bool call(ScriptWrappable* scriptWrappable, const String& arg);
|
|
|
| v8::Local<v8::Function> v8Value(v8::Isolate* isolate) {
|
| - return m_callback.NewLocal(isolate);
|
| + return callback_.NewLocal(isolate);
|
| }
|
|
|
| private:
|
| VoidCallbackFunctionTypedef(ScriptState*, v8::Local<v8::Function>);
|
|
|
| RefPtr<ScriptState> script_state_;
|
| - TraceWrapperV8Reference<v8::Function> m_callback;
|
| + TraceWrapperV8Reference<v8::Function> callback_;
|
| };
|
|
|
| template <>
|
|
|