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

Unified Diff: WebCore/fileapi/ThreadableBlobRegistry.cpp

Issue 3449009: Merge 67646 - BlobData should be copied for it to be used cross-thread in Thr... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/517/
Patch Set: Created 10 years, 3 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 | « LayoutTests/fast/files/apply-blob-url-to-img.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: WebCore/fileapi/ThreadableBlobRegistry.cpp
===================================================================
--- WebCore/fileapi/ThreadableBlobRegistry.cpp (revision 67660)
+++ WebCore/fileapi/ThreadableBlobRegistry.cpp (working copy)
@@ -42,7 +42,7 @@
struct BlobRegistryContext {
BlobRegistryContext(const KURL& url, PassOwnPtr<BlobData> blobData)
: url(url.copy())
- , blobData(blobData)
+ , blobData(blobData->copy())
{
}
« no previous file with comments | « LayoutTests/fast/files/apply-blob-url-to-img.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698