diff options
Diffstat (limited to 'WebCore/bindings/v8/ScriptValue.h')
-rw-r--r-- | WebCore/bindings/v8/ScriptValue.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/WebCore/bindings/v8/ScriptValue.h b/WebCore/bindings/v8/ScriptValue.h index 04e8819..004851b 100644 --- a/WebCore/bindings/v8/ScriptValue.h +++ b/WebCore/bindings/v8/ScriptValue.h @@ -53,7 +53,7 @@ public: m_value = v8::Persistent<v8::Value>::New(value); #ifndef NDEBUG - V8Proxy::RegisterGlobalHandle(SCRIPTVALUE, this, m_value); + V8GCController::registerGlobalHandle(SCRIPTVALUE, this, m_value); #endif } @@ -64,7 +64,7 @@ public: m_value = v8::Persistent<v8::Value>::New(value.m_value); #ifndef NDEBUG - V8Proxy::RegisterGlobalHandle(SCRIPTVALUE, this, m_value); + V8GCController::registerGlobalHandle(SCRIPTVALUE, this, m_value); #endif } @@ -80,7 +80,7 @@ public: m_value = v8::Persistent<v8::Value>::New(value.m_value); #ifndef NDEBUG - V8Proxy::RegisterGlobalHandle(SCRIPTVALUE, this, m_value); + V8GCController::registerGlobalHandle(SCRIPTVALUE, this, m_value); #endif return *this; @@ -122,7 +122,7 @@ public: return; #ifndef NDEBUG - V8Proxy::UnregisterGlobalHandle(this, m_value); + V8GCController::unregisterGlobalHandle(this, m_value); #endif m_value.Dispose(); m_value.Clear(); |