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

Unified Diff: third_party/WebKit/Source/platform/network/ResourceResponse.h

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
Index: third_party/WebKit/Source/platform/network/ResourceResponse.h
diff --git a/third_party/WebKit/Source/platform/network/ResourceResponse.h b/third_party/WebKit/Source/platform/network/ResourceResponse.h
index 5977377b11d2f2a8ed0f703497c7f74e76bd38c4..b2d059f8da584ceb90d05cea81974cb82b128602 100644
--- a/third_party/WebKit/Source/platform/network/ResourceResponse.h
+++ b/third_party/WebKit/Source/platform/network/ResourceResponse.h
@@ -175,7 +175,7 @@ public:
SecurityStyle getSecurityStyle() const { return m_securityStyle; }
void setSecurityStyle(SecurityStyle securityStyle) { m_securityStyle = securityStyle; }
- const SecurityDetails* securityDetails() const { return &m_securityDetails; }
+ const SecurityDetails* getSecurityDetails() const { return &m_securityDetails; }
void setSecurityDetails(const String& protocol, const String& keyExchange, const String& cipher, const String& mac, int certId, size_t numUnknownScts, size_t numInvalidScts, size_t numValidScts);
long long appCacheID() const { return m_appCacheID; }
@@ -230,7 +230,7 @@ public:
void setDownloadedFilePath(const String&);
// Extra data associated with this response.
- ExtraData* extraData() const { return m_extraData.get(); }
+ ExtraData* getExtraData() const { return m_extraData.get(); }
void setExtraData(PassRefPtr<ExtraData> extraData) { m_extraData = extraData; }
// The ResourceResponse subclass may "shadow" this method to provide platform-specific memory usage information

Powered by Google App Engine
This is Rietveld 408576698