Index: Source/bindings/v8/custom/V8MutationObserverCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8MutationObserverCustom.cpp b/Source/bindings/v8/custom/V8MutationObserverCustom.cpp |
index 18408793d7e62ed60541211ba0eecb8abd8e32b9..12445611bc2d0d5629d048c4540ff5b4d04318b2 100644 |
--- a/Source/bindings/v8/custom/V8MutationObserverCustom.cpp |
+++ b/Source/bindings/v8/custom/V8MutationObserverCustom.cpp |
@@ -61,7 +61,7 @@ void V8MutationObserver::constructorCustom(const v8::FunctionCallbackInfo<v8::Va |
v8::Handle<v8::Object> wrapper = info.Holder(); |
OwnPtr<MutationCallback> callback = V8MutationCallback::create(v8::Handle<v8::Function>::Cast(arg), context, wrapper, info.GetIsolate()); |
- RefPtr<MutationObserver> observer = MutationObserver::create(callback.release()); |
+ RefPtrWillBeRawPtr<MutationObserver> observer = MutationObserver::create(callback.release()); |
V8DOMWrapper::associateObjectWithWrapper<V8MutationObserver>(observer.release(), &wrapperTypeInfo, wrapper, info.GetIsolate(), WrapperConfiguration::Dependent); |
info.GetReturnValue().Set(wrapper); |