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

Unified Diff: public/platform/WebBlobRegistry.h

Issue 18635004: [Not ready for review] Add Streams API support to FileReader Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
« no previous file with comments | « Source/core/fileapi/FileReader.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebBlobRegistry.h
diff --git a/public/platform/WebBlobRegistry.h b/public/platform/WebBlobRegistry.h
index 22fa85eaf9c986ae7662c9b08af816d83d220764..59f94f6852d224ef47cf2d8a457cac2438be358b 100644
--- a/public/platform/WebBlobRegistry.h
+++ b/public/platform/WebBlobRegistry.h
@@ -51,7 +51,7 @@ public:
// Registers a stream URL referring to a stream with the specified media
// type.
- virtual void registerStreamURL(const WebURL&, const WebString&) { WEBKIT_ASSERT_NOT_REACHED(); }
+ virtual void registerStreamURL(const WebURL&, const WebString&) = 0;
// Registers a blob or stream URL referring to the blob data or stream
// identified by the specified srcURL.
@@ -61,10 +61,10 @@ public:
virtual void registerBlobURL(const WebURL&, const WebURL& srcURL) = 0;
// Add data to the stream referred by the URL.
- virtual void addDataToStream(const WebURL&, WebThreadSafeData&) { WEBKIT_ASSERT_NOT_REACHED(); }
+ virtual void addDataToStream(const WebURL&, WebThreadSafeData&) = 0;
// Tell the registry that this stream won't receive any more data.
- virtual void finalizeStream(const WebURL&) { WEBKIT_ASSERT_NOT_REACHED(); }
+ virtual void finalizeStream(const WebURL&) = 0;
// Unregisters a blob or stream referred by the URL.
//
« no previous file with comments | « Source/core/fileapi/FileReader.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698