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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorResourceAgent.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/InspectorResourceAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
index 3ebbcf45edf631104b78ecc7bda8aeef7ef8f80d..e8cfe1830d821b0915288d39efdffd14ca7d6a13 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
@@ -649,7 +649,7 @@ void InspectorResourceAgent::willLoadXHR(XMLHttpRequest* xhr, ThreadableLoaderCl
ASSERT(!m_pendingRequest);
m_pendingRequest = client;
m_pendingRequestType = InspectorPageAgent::XHRResource;
- m_pendingXHRReplayData = XHRReplayData::create(xhr->executionContext(), method, urlWithoutFragment(url), async, formData.get(), includeCredentials);
+ m_pendingXHRReplayData = XHRReplayData::create(xhr->getExecutionContext(), method, urlWithoutFragment(url), async, formData.get(), includeCredentials);
for (const auto& header : headers)
m_pendingXHRReplayData->addHeader(header.key, header.value);
}
@@ -999,7 +999,7 @@ void InspectorResourceAgent::replayXHR(ErrorString*, const String& requestId)
if (!xhrReplayData)
return;
- ExecutionContext* executionContext = xhrReplayData->executionContext();
+ ExecutionContext* executionContext = xhrReplayData->getExecutionContext();
if (!executionContext) {
m_resourcesData->setXHRReplayData(requestId, 0);
return;

Powered by Google App Engine
This is Rietveld 408576698