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

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

Issue 2105713002: Render process changes for ResourceTiming sizes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@resource_timing_sizes_browser_process
Patch Set: Initialise encoded_body_length for sync XHR to data: URLs Created 4 years, 5 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 68b63877fda9f63cb249d56230e38990df3f2279..51ce95ec6631e58d7bb6888be99aa7e21e63fd87 100644
--- a/third_party/WebKit/Source/platform/network/ResourceResponse.h
+++ b/third_party/WebKit/Source/platform/network/ResourceResponse.h
@@ -281,6 +281,12 @@ public:
unsigned short remotePort() const { return m_remotePort; }
void setRemotePort(unsigned short value) { m_remotePort = value; }
+ long long encodedBodyLength() const { return m_encodedBodyLength; }
+ void addToEncodedBodyLength(int value);
+
+ long long decodedBodyLength() const { return m_decodedBodyLength; }
+ void addToDecodedBodyLength(int value);
+
const String& downloadedFilePath() const { return m_downloadedFilePath; }
void setDownloadedFilePath(const String&);
@@ -407,6 +413,13 @@ private:
// Remote port number of the socket which fetched this resource.
unsigned short m_remotePort;
+ // Size of the response body in bytes prior to decompression.
+ long long m_encodedBodyLength;
+
+ // Sizes of the response body in bytes after any content-encoding is
+ // removed.
+ long long m_decodedBodyLength;
+
// The downloaded file path if the load streamed to a file.
String m_downloadedFilePath;
@@ -455,6 +468,8 @@ public:
int64_t m_responseTime;
String m_remoteIPAddress;
unsigned short m_remotePort;
+ long long m_encodedBodyLength;
+ long long m_decodedBodyLength;
String m_downloadedFilePath;
RefPtr<BlobDataHandle> m_downloadedFileHandle;
};

Powered by Google App Engine
This is Rietveld 408576698