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

Unified Diff: content/child/web_url_loader_impl.cc

Issue 1774943003: blink: Rename platform/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-platform: rebase-yayyyyyyyy 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 | « content/child/ftp_directory_listing_response_delegate.cc ('k') | content/public/renderer/document_state.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/web_url_loader_impl.cc
diff --git a/content/child/web_url_loader_impl.cc b/content/child/web_url_loader_impl.cc
index b4c4f69bebbc30b41df9dac2e2e18ef3563f66a5..45c72dcb889fdff8d0404d108dc410ddbeb88125 100644
--- a/content/child/web_url_loader_impl.cc
+++ b/content/child/web_url_loader_impl.cc
@@ -459,9 +459,9 @@ void WebURLLoaderImpl::Context::Start(const WebURLRequest& request,
SyncLoadResponse* sync_load_response) {
DCHECK(request_id_ == -1);
request_ = request; // Save the request.
- if (request.extraData()) {
+ if (request.getExtraData()) {
RequestExtraData* extra_data =
- static_cast<RequestExtraData*>(request.extraData());
+ static_cast<RequestExtraData*>(request.getExtraData());
stream_override_ = extra_data->TakeStreamOverrideOwnership();
}
@@ -540,7 +540,7 @@ void WebURLLoaderImpl::Context::Start(const WebURLRequest& request,
GetRequestContextTypeForWebURLRequest(request);
request_info.fetch_frame_type =
GetRequestContextFrameTypeForWebURLRequest(request);
- request_info.extra_data = request.extraData();
+ request_info.extra_data = request.getExtraData();
request_info.report_raw_headers = request.reportRawHeaders();
request_info.loading_web_task_runner.reset(web_task_runner_->clone());
« no previous file with comments | « content/child/ftp_directory_listing_response_delegate.cc ('k') | content/public/renderer/document_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698