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

Unified Diff: Source/core/fileapi/FileReaderSync.cpp

Issue 23992003: blob hacking webcore style (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
« no previous file with comments | « Source/core/fileapi/FileReaderLoader.cpp ('k') | Source/core/fileapi/Stream.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fileapi/FileReaderSync.cpp
diff --git a/Source/core/fileapi/FileReaderSync.cpp b/Source/core/fileapi/FileReaderSync.cpp
index c54e83a278e9c8c21b2386433ea62d067a4fdd03..80222cfa56e8f1d0d705adc394e00038e00413ba 100644
--- a/Source/core/fileapi/FileReaderSync.cpp
+++ b/Source/core/fileapi/FileReaderSync.cpp
@@ -99,7 +99,7 @@ String FileReaderSync::readAsDataURL(ExecutionContext* executionContext, Blob* b
void FileReaderSync::startLoading(ExecutionContext* executionContext, FileReaderLoader& loader, const Blob& blob, ExceptionState& es)
{
- loader.start(executionContext, blob);
+ loader.start(executionContext, blob.blobDataHandle());
if (loader.errorCode())
FileError::throwDOMException(es, loader.errorCode());
}
« no previous file with comments | « Source/core/fileapi/FileReaderLoader.cpp ('k') | Source/core/fileapi/Stream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698