Index: WebKit/chromium/public/WebFileWriter.h |
=================================================================== |
--- WebKit/chromium/public/WebFileWriter.h (revision 140218) |
+++ WebKit/chromium/public/WebFileWriter.h (working copy) |
@@ -36,7 +36,7 @@ |
namespace WebKit { |
-class WebURL; |
+class WebString; |
class WebFileWriter { |
public: |
@@ -44,7 +44,7 @@ |
// Only one write or one truncate operation can be in progress at a time. |
// These functions are asynchronous and will report results through the WebFileWriter's associated WebFileWriterClient. |
- virtual void write(long long position, const WebURL& blobURL) = 0; |
+ virtual void write(long long position, const WebString& blobUUID) = 0; |
virtual void truncate(long long length) = 0; |
// Cancel will attempt to abort a running write or truncate. However, it may not be possible to cancel an in-progress action, or the call may have come in too late. Partial writes are possible. |