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

Unified Diff: WebCore/platform/chromium/support/WebHTTPBody.cpp

Issue 11192017: ********** WebCore blob hacking (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/Source/
Patch Set: Created 8 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: WebCore/platform/chromium/support/WebHTTPBody.cpp
===================================================================
--- WebCore/platform/chromium/support/WebHTTPBody.cpp (revision 132804)
+++ WebCore/platform/chromium/support/WebHTTPBody.cpp (working copy)
@@ -157,7 +157,11 @@
#if ENABLE(BLOB)
ASSERT(KURL(blobURL).protocolIs("blob"));
ensureMutable();
- m_private->appendBlob(blobURL);
+ // TODO: BlobDataHandles
+ // Need to either pass in a WebBlobDataHandle or a blob uuid and to construct
+ // a BlobDataHandle around that uuid value. This might call for exposing the such
+ // a class in the WebKit sooner rather than later?
+ //m_private->appendBlob(blobURL);
#endif
}

Powered by Google App Engine
This is Rietveld 408576698