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

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 7 years, 11 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 | « WebKit/chromium/public/WebFileSystemCallbacks.h ('k') | WebKit/chromium/src/AsyncFileSystemChromium.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « WebKit/chromium/public/WebFileSystemCallbacks.h ('k') | WebKit/chromium/src/AsyncFileSystemChromium.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698