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

Unified Diff: webkit/glue/weburlloader_impl.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/glue/resource_request_body.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/weburlloader_impl.cc
===================================================================
--- webkit/glue/weburlloader_impl.cc (revision 183651)
+++ webkit/glue/weburlloader_impl.cc (working copy)
@@ -510,8 +510,8 @@
base::Time::FromDoubleT(element.modificationTime));
}
break;
- case WebHTTPBody::Element::TypeURL: {
- GURL url = GURL(element.url);
+ case WebHTTPBody::Element::TypeFileSystemURL: {
+ GURL url = GURL(element.fileSystemURL);
DCHECK(url.SchemeIsFileSystem());
request_body->AppendFileSystemFileRange(
url,
@@ -521,7 +521,7 @@
break;
}
case WebHTTPBody::Element::TypeBlob:
- request_body->AppendBlob(GURL(element.blobURL));
+ request_body->AppendBlob(element.blobUUID.utf8());
break;
default:
NOTREACHED();
« no previous file with comments | « webkit/glue/resource_request_body.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698