Index: third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.cpp b/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.cpp |
index 29cf4ac0f19f2102d0d1e2702959632341e1ec73..4c688dc133ed1b947cc285a72ad720c6b5ab54ae 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/VoidCallbackFunctionTypedef.cpp |
@@ -32,16 +32,16 @@ VoidCallbackFunctionTypedef* VoidCallbackFunctionTypedef::Create(ScriptState* sc |
VoidCallbackFunctionTypedef::VoidCallbackFunctionTypedef(ScriptState* scriptState, v8::Local<v8::Function> callback) |
: script_state_(scriptState), |
- m_callback(scriptState->GetIsolate(), this, callback) { |
- DCHECK(!m_callback.IsEmpty()); |
+ callback_(scriptState->GetIsolate(), this, callback) { |
+ DCHECK(!callback_.IsEmpty()); |
} |
DEFINE_TRACE_WRAPPERS(VoidCallbackFunctionTypedef) { |
- visitor->TraceWrappers(m_callback.Cast<v8::Value>()); |
+ visitor->TraceWrappers(callback_.Cast<v8::Value>()); |
} |
bool VoidCallbackFunctionTypedef::call(ScriptWrappable* scriptWrappable, const String& arg) { |
- if (m_callback.IsEmpty()) |
+ if (callback_.IsEmpty()) |
return false; |
if (!script_state_->ContextIsValid()) |
@@ -69,7 +69,7 @@ bool VoidCallbackFunctionTypedef::call(ScriptWrappable* scriptWrappable, const S |
exceptionCatcher.SetVerbose(true); |
v8::Local<v8::Value> v8ReturnValue; |
- if (!V8ScriptRunner::CallFunction(m_callback.NewLocal(isolate), |
+ if (!V8ScriptRunner::CallFunction(callback_.NewLocal(isolate), |
context, |
thisValue, |
1, |