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

Unified Diff: third_party/WebKit/Source/core/inspector/WorkerRuntimeAgent.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/core/inspector/WorkerRuntimeAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/WorkerRuntimeAgent.cpp b/third_party/WebKit/Source/core/inspector/WorkerRuntimeAgent.cpp
index 747bcff9c67159d45345dc16179e94e12d88aab6..d5540d28da09d3472446c9f77138dcb12e4189d9 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerRuntimeAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/WorkerRuntimeAgent.cpp
@@ -57,13 +57,13 @@ void WorkerRuntimeAgent::enable(ErrorString* errorString)
return;
InspectorRuntimeAgent::enable(errorString);
- ScriptState* scriptState = m_workerGlobalScope->scriptController()->scriptState();
+ ScriptState* scriptState = m_workerGlobalScope->scriptController()->getScriptState();
reportExecutionContextCreated(scriptState, "", m_workerGlobalScope->url().getString(), "", "");
}
ScriptState* WorkerRuntimeAgent::defaultScriptState()
{
- return m_workerGlobalScope->scriptController()->scriptState();
+ return m_workerGlobalScope->scriptController()->getScriptState();
}
void WorkerRuntimeAgent::muteConsole()

Powered by Google App Engine
This is Rietveld 408576698