Index: third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp |
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp |
index c3136e3406cf8bebe5afcbfae109ebd96f255635..ae63645ba6b47674a10be98dc3d5166623f02f3e 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp |
+++ b/third_party/WebKit/Source/bindings/core/v8/V8ResizeObserverCallbackCustom.cpp |
@@ -25,7 +25,7 @@ void V8ResizeObserverCallback::handleEvent( |
return; |
ScriptState::Scope scope(script_state_.Get()); |
- if (m_callback.IsEmpty()) |
+ if (callback_.IsEmpty()) |
return; |
v8::Local<v8::Value> observer_handle = |
@@ -46,7 +46,7 @@ void V8ResizeObserverCallback::handleEvent( |
v8::TryCatch exception_catcher(script_state_->GetIsolate()); |
exception_catcher.SetVerbose(true); |
V8ScriptRunner::CallFunction( |
- m_callback.NewLocal(isolate), ExecutionContext::From(script_state_.Get()), |
+ callback_.NewLocal(isolate), ExecutionContext::From(script_state_.Get()), |
this_object, WTF_ARRAY_LENGTH(argv), argv, isolate); |
} |