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

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

Issue 1773813007: blink: Rename modules/ method to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-modules: rebase-fixes 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
Index: third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp
index b3a198ba5b58a7aaf4e9320d1a072a052026dbc6..e473714efee6080aeec3245dbdd27d8ce63d8071 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptPromise.cpp
@@ -174,7 +174,7 @@ ScriptPromise ScriptPromise::InternalResolver::promise() const
{
if (m_resolver.isEmpty())
return ScriptPromise();
- return ScriptPromise(m_resolver.scriptState(), v8Promise());
+ return ScriptPromise(m_resolver.getScriptState(), v8Promise());
}
void ScriptPromise::InternalResolver::resolve(v8::Local<v8::Value> value)

Powered by Google App Engine
This is Rietveld 408576698