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

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

Issue 1738553002: [ABANDONED] Move multipart/x-mixed-replace related code to ImageResource (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@multipart-cleanup-2
Patch Set: Created 4 years, 10 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 5c04f4aeeef1408053999c96773d45e21adf3d59..1bb3873ca90022553b80a4c354bca6392640e50e 100644
--- a/third_party/WebKit/Source/platform/network/ResourceResponse.h
+++ b/third_party/WebKit/Source/platform/network/ResourceResponse.h
@@ -214,9 +214,6 @@ public:
const KURL& originalURLViaServiceWorker() const { return m_originalURLViaServiceWorker; }
void setOriginalURLViaServiceWorker(const KURL& url) { m_originalURLViaServiceWorker = url; }
- bool isMultipartPayload() const { return m_isMultipartPayload; }
- void setIsMultipartPayload(bool value) { m_isMultipartPayload = value; }
-
const Vector<char>& multipartBoundary() const { return m_multipartBoundary; }
void setMultipartBoundary(const char* bytes, size_t size)
{
@@ -315,9 +312,6 @@ private:
// The multipart boundary of this response.
Vector<char> m_multipartBoundary;
- // Set to true if this is part of a multipart response.
- bool m_isMultipartPayload;
-
// Was the resource fetched over SPDY. See http://dev.chromium.org/spdy
bool m_wasFetchedViaSPDY;
@@ -390,7 +384,6 @@ public:
long long m_appCacheID;
KURL m_appCacheManifestURL;
Vector<char> m_multipartBoundary;
- bool m_isMultipartPayload;
bool m_wasFetchedViaSPDY;
bool m_wasNpnNegotiated;
bool m_wasAlternateProtocolAvailable;

Powered by Google App Engine
This is Rietveld 408576698