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

Unified Diff: WebKit/chromium/public/WebFileWriter.h

Issue 11192017: ********** WebCore blob hacking (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/Source/
Patch Set: Created 8 years 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: WebKit/chromium/public/WebFileWriter.h
===================================================================
--- WebKit/chromium/public/WebFileWriter.h (revision 136547)
+++ 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.

Powered by Google App Engine
This is Rietveld 408576698