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

Unified Diff: third_party/WebKit/Source/core/fetch/MultipartImageResourceParser.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/core/fetch/MultipartImageResourceParser.h
diff --git a/third_party/WebKit/Source/core/fetch/MultipartImageResourceParser.h b/third_party/WebKit/Source/core/fetch/MultipartImageResourceParser.h
index 00f5bec45db3ab0dbe28191e1753f9c1d3488385..4823c1e90487e2f4fc8693e09a1912535ebea9ee 100644
--- a/third_party/WebKit/Source/core/fetch/MultipartImageResourceParser.h
+++ b/third_party/WebKit/Source/core/fetch/MultipartImageResourceParser.h
@@ -54,7 +54,7 @@ public:
class CORE_EXPORT Client : public WillBeGarbageCollectedMixin {
public:
virtual ~Client() {}
- virtual void onePartInMultipartReceived(const ResourceResponse&) = 0;
+ virtual void onePartInMultipartReceived(const ResourceResponse&, bool isFirstPart) = 0;
virtual void multipartDataReceived(const char* bytes, size_t) = 0;
DEFINE_INLINE_VIRTUAL_TRACE() {}
};

Powered by Google App Engine
This is Rietveld 408576698