Index: public/platform/WebBlobRegistry.h |
diff --git a/public/platform/WebBlobRegistry.h b/public/platform/WebBlobRegistry.h |
index a8ed2bc5912a579e2ef977fca7aa058d32152e9a..f4ce26f4313557df81abe9ade561d42dfddf32b1 100644 |
--- a/public/platform/WebBlobRegistry.h |
+++ b/public/platform/WebBlobRegistry.h |
@@ -37,7 +37,6 @@ namespace blink { |
class WebBlobData; |
class WebString; |
-class WebThreadSafeData; |
class WebURL; |
class WebBlobRegistry { |
@@ -59,7 +58,7 @@ public: |
virtual void registerStreamURL(const WebURL&, const WebURL& srcURL) { BLINK_ASSERT_NOT_REACHED(); }; |
// Add data to the stream referred by the URL. |
- virtual void addDataToStream(const WebURL&, WebThreadSafeData&) { BLINK_ASSERT_NOT_REACHED(); } |
+ virtual void addDataToStream(const WebURL&, const char* data, size_t length) { BLINK_ASSERT_NOT_REACHED(); } |
// Tell the registry that construction of this stream has completed |
// successfully and so it won't receive any more data. |