| Index: Source/bindings/core/v8/custom/V8MutationObserverCustom.cpp
|
| diff --git a/Source/bindings/core/v8/custom/V8MutationObserverCustom.cpp b/Source/bindings/core/v8/custom/V8MutationObserverCustom.cpp
|
| index c3f29e09b505f4756cf364231f3c799a476946df..ee46cb95e3d63568b1419b9b3bd4df672cbc7f04 100644
|
| --- a/Source/bindings/core/v8/custom/V8MutationObserverCustom.cpp
|
| +++ b/Source/bindings/core/v8/custom/V8MutationObserverCustom.cpp
|
| @@ -58,9 +58,9 @@ void V8MutationObserver::constructorCustom(const v8::FunctionCallbackInfo<v8::Va
|
| return;
|
| }
|
|
|
| - v8::Handle<v8::Object> wrapper = info.Holder();
|
| + v8::Local<v8::Object> wrapper = info.Holder();
|
|
|
| - OwnPtrWillBeRawPtr<MutationCallback> callback = V8MutationCallback::create(v8::Handle<v8::Function>::Cast(arg), wrapper, ScriptState::current(info.GetIsolate()));
|
| + OwnPtrWillBeRawPtr<MutationCallback> callback = V8MutationCallback::create(v8::Local<v8::Function>::Cast(arg), wrapper, ScriptState::current(info.GetIsolate()));
|
| RefPtrWillBeRawPtr<MutationObserver> observer = MutationObserver::create(callback.release());
|
|
|
| V8DOMWrapper::associateObjectWithWrapper(info.GetIsolate(), observer.get(), &wrapperTypeInfo, wrapper);
|
|
|