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

Unified Diff: content/child/ftp_directory_listing_response_delegate.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/browser_font_resource_trusted.cc ('k') | content/child/web_url_loader_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/ftp_directory_listing_response_delegate.cc
diff --git a/content/child/ftp_directory_listing_response_delegate.cc b/content/child/ftp_directory_listing_response_delegate.cc
index 5bf21a756809fb0dfebe7ee23b4b60dc46f5feb4..cc4df55687d920818e92cb3d6aa3e958bbda81e7 100644
--- a/content/child/ftp_directory_listing_response_delegate.cc
+++ b/content/child/ftp_directory_listing_response_delegate.cc
@@ -63,10 +63,10 @@ FtpDirectoryListingResponseDelegate::FtpDirectoryListingResponseDelegate(
const WebURLResponse& response)
: client_(client),
loader_(loader) {
- if (response.extraData()) {
+ if (response.getExtraData()) {
// extraData can be NULL during tests.
WebURLResponseExtraDataImpl* extra_data =
- static_cast<WebURLResponseExtraDataImpl*>(response.extraData());
+ static_cast<WebURLResponseExtraDataImpl*>(response.getExtraData());
extra_data->set_is_ftp_directory_listing(true);
}
Init(response.url());
« no previous file with comments | « content/child/browser_font_resource_trusted.cc ('k') | content/child/web_url_loader_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698