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

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

Issue 2521503002: Rename ResourceResponse::addToEncodedDataSize() to setEncodedDataSize() (Closed)
Patch Set: fix Created 4 years, 1 month 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 0daca5d2d389aa616d62d1a0bd7cb54cc57b07f0..c63febbfd66c3ea564924906a2f38598d07dee7d 100644
--- a/third_party/WebKit/Source/platform/network/ResourceResponse.h
+++ b/third_party/WebKit/Source/platform/network/ResourceResponse.h
@@ -328,7 +328,7 @@ class PLATFORM_EXPORT ResourceResponse final {
void setRemotePort(unsigned short value) { m_remotePort = value; }
long long encodedDataLength() const { return m_encodedDataLength; }
- void addToEncodedDataLength(long long value);
+ void setEncodedDataLength(long long value);
long long encodedBodyLength() const { return m_encodedBodyLength; }
void addToEncodedBodyLength(long long value);

Powered by Google App Engine
This is Rietveld 408576698