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

Unified Diff: third_party/WebKit/Source/platform/exported/WebHTTPLoadInfo.cpp

Issue 2521483002: Remove ResourceLoaderInfo::encodedDataLength (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/exported/WebHTTPLoadInfo.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebHTTPLoadInfo.cpp b/third_party/WebKit/Source/platform/exported/WebHTTPLoadInfo.cpp
index 86d91abaf5456de45bc33a10a71381f4ba88f4c3..4710611010ae5c6eadc5a0f95da1dabe933a78c9 100644
--- a/third_party/WebKit/Source/platform/exported/WebHTTPLoadInfo.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebHTTPLoadInfo.cpp
@@ -75,16 +75,6 @@ void WebHTTPLoadInfo::setHTTPStatusText(const WebString& statusText) {
m_private->httpStatusText = statusText;
}
-long long WebHTTPLoadInfo::encodedDataLength() const {
- ASSERT(!m_private.isNull());
- return m_private->encodedDataLength;
-}
-
-void WebHTTPLoadInfo::setEncodedDataLength(long long encodedDataLength) {
- ASSERT(!m_private.isNull());
- m_private->encodedDataLength = encodedDataLength;
-}
-
static void addHeader(HTTPHeaderMap* map,
const WebString& name,
const WebString& value) {

Powered by Google App Engine
This is Rietveld 408576698