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

Unified Diff: Source/modules/filesystem/FileWriterSync.cpp

Issue 26435003: WebCore blob hacking (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 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
Index: Source/modules/filesystem/FileWriterSync.cpp
diff --git a/Source/modules/filesystem/FileWriterSync.cpp b/Source/modules/filesystem/FileWriterSync.cpp
index 781b5385dc24fe954913a8bbadc62ed1fe72b29c..8e9175af730f1bbe06d65db41f5f26e115b0a8ef 100644
--- a/Source/modules/filesystem/FileWriterSync.cpp
+++ b/Source/modules/filesystem/FileWriterSync.cpp
@@ -52,7 +52,7 @@ void FileWriterSync::write(Blob* data, ExceptionState& es)
}
prepareForWrite();
- writer()->write(position(), WebKit::WebURL(data->url()));
+ writer()->write(position(), data->uuid());
ASSERT(m_complete);
if (m_error) {
FileError::throwDOMException(es, m_error);

Powered by Google App Engine
This is Rietveld 408576698