| Index: Source/bindings/v8/V8MutationCallback.cpp
|
| diff --git a/Source/bindings/v8/V8MutationCallback.cpp b/Source/bindings/v8/V8MutationCallback.cpp
|
| index 6be6f16d6fcc31fb07e00482a67a36d91c2ec723..4c7cf690963f34728c4971387b81daa36c26250b 100644
|
| --- a/Source/bindings/v8/V8MutationCallback.cpp
|
| +++ b/Source/bindings/v8/V8MutationCallback.cpp
|
| @@ -30,7 +30,6 @@
|
| #include "V8MutationRecord.h"
|
| #include "bindings/v8/ScriptController.h"
|
| #include "bindings/v8/V8Binding.h"
|
| -#include "bindings/v8/V8HiddenPropertyName.h"
|
| #include "core/dom/ExecutionContext.h"
|
| #include "wtf/Assertions.h"
|
|
|
| @@ -42,7 +41,7 @@ V8MutationCallback::V8MutationCallback(v8::Handle<v8::Function> callback, Execut
|
| , m_world(DOMWrapperWorld::current())
|
| , m_isolate(isolate)
|
| {
|
| - owner->SetHiddenValue(V8HiddenPropertyName::callback(m_isolate), callback);
|
| + setHiddenValue(m_isolate, owner, "callback", callback);
|
| m_callback.setWeak(this, &setWeakCallback);
|
| }
|
|
|
|
|