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

Unified Diff: webkit/fileapi/webfilewriter_base.cc

Issue 11410019: ********** Chromium Blob hacking (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 10 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/fileapi/webfilewriter_base.h ('k') | webkit/glue/glue_serialize.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/webfilewriter_base.cc
===================================================================
--- webkit/fileapi/webfilewriter_base.cc (revision 183651)
+++ webkit/fileapi/webfilewriter_base.cc (working copy)
@@ -32,11 +32,11 @@
void WebFileWriterBase::write(
long long position,
- const WebKit::WebURL& blob_url) {
+ const WebKit::WebString& blob_uuid) {
DCHECK(kOperationNone == operation_);
DCHECK(kCancelNotInProgress == cancel_state_);
operation_ = kOperationWrite;
- DoWrite(path_, blob_url, position);
+ DoWrite(path_, blob_uuid.utf8(), position);
}
// When we cancel a write/truncate, we always get back the result of the write
« no previous file with comments | « webkit/fileapi/webfilewriter_base.h ('k') | webkit/glue/glue_serialize.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698