Index: third_party/WebKit/Source/bindings/core/v8/Dictionary.cpp |
diff --git a/third_party/WebKit/Source/bindings/core/v8/Dictionary.cpp b/third_party/WebKit/Source/bindings/core/v8/Dictionary.cpp |
index d1a5c2ab53c12f9a4b4cc54ebb8ddd541eb06de8..f97197022ca9e85e7b9052574fe3a677f2157322 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/Dictionary.cpp |
+++ b/third_party/WebKit/Source/bindings/core/v8/Dictionary.cpp |
@@ -63,7 +63,7 @@ Dictionary::Dictionary(const v8::Local<v8::Value>& options, v8::Isolate* isolate |
ASSERT(m_isolate); |
ASSERT(m_exceptionState); |
#if ENABLE(ASSERT) |
- m_exceptionState->onStackObjectChecker().add(this); |
+ m_exceptionState->getOnStackObjectChecker().add(this); |
#endif |
} |
@@ -71,7 +71,7 @@ Dictionary::~Dictionary() |
{ |
#if ENABLE(ASSERT) |
if (m_exceptionState) |
- m_exceptionState->onStackObjectChecker().remove(this); |
+ m_exceptionState->getOnStackObjectChecker().remove(this); |
#endif |
} |
@@ -81,12 +81,12 @@ Dictionary& Dictionary::operator=(const Dictionary& optionsObject) |
m_isolate = optionsObject.m_isolate; |
#if ENABLE(ASSERT) |
if (m_exceptionState) |
- m_exceptionState->onStackObjectChecker().remove(this); |
+ m_exceptionState->getOnStackObjectChecker().remove(this); |
#endif |
m_exceptionState = optionsObject.m_exceptionState; |
#if ENABLE(ASSERT) |
if (m_exceptionState) |
- m_exceptionState->onStackObjectChecker().add(this); |
+ m_exceptionState->getOnStackObjectChecker().add(this); |
#endif |
return *this; |
} |