Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Unified Diff: third_party/WebKit/Source/bindings/core/v8/Dictionary.cpp

Issue 1780603002: blink: Rename bindings/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-bindings: rebase Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/ExceptionState.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/ExceptionState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698