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

Unified Diff: third_party/WebKit/Source/core/fetch/MultipartImageResourceParser.h

Issue 1710733002: Move multipart resource handling to core/fetch (2/2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@multipart-cleanup
Patch Set: Created 4 years, 9 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 c812bb96c9468825cf13e9b5a0559c4bdee6f8bb..92db211febe54625ad92d1051511806ccc8faa78 100644
--- a/third_party/WebKit/Source/core/fetch/MultipartImageResourceParser.h
+++ b/third_party/WebKit/Source/core/fetch/MultipartImageResourceParser.h
@@ -55,7 +55,7 @@ public:
class CORE_EXPORT Client : public WillBeGarbageCollectedMixin {
public:
virtual ~Client() = default;
- 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