| Index: third_party/WebKit/Source/bindings/core/v8/V8IntersectionObserverCallback.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8IntersectionObserverCallback.cpp b/third_party/WebKit/Source/bindings/core/v8/V8IntersectionObserverCallback.cpp
|
| index 5f21bb595ac048d472efeeb678da882875e66bd2..e218a8938b286223fdca31ad5881e9dc356c0f06 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8IntersectionObserverCallback.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8IntersectionObserverCallback.cpp
|
| @@ -38,14 +38,14 @@ void V8IntersectionObserverCallback::handleEvent(
|
|
|
| if (m_callback.isEmpty())
|
| return;
|
| - v8::Local<v8::Value> observerHandle = toV8(
|
| + v8::Local<v8::Value> observerHandle = ToV8(
|
| &observer, m_scriptState->context()->Global(), m_scriptState->isolate());
|
| if (!observerHandle->IsObject())
|
| return;
|
|
|
| v8::Local<v8::Object> thisObject =
|
| v8::Local<v8::Object>::Cast(observerHandle);
|
| - v8::Local<v8::Value> entriesHandle = toV8(
|
| + v8::Local<v8::Value> entriesHandle = ToV8(
|
| entries, m_scriptState->context()->Global(), m_scriptState->isolate());
|
| if (entriesHandle.IsEmpty()) {
|
| return;
|
|
|