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

Unified Diff: webkit/glue/weburlloader_impl.cc

Issue 11410019: ********** Chromium Blob hacking (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years 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: webkit/glue/weburlloader_impl.cc
===================================================================
--- webkit/glue/weburlloader_impl.cc (revision 171309)
+++ webkit/glue/weburlloader_impl.cc (working copy)
@@ -470,8 +470,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,
@@ -481,7 +481,7 @@
break;
}
case WebHTTPBody::Element::TypeBlob:
- request_body->AppendBlob(GURL(element.blobURL));
+ request_body->AppendBlob(element.blobUUID.utf8());
break;
default:
NOTREACHED();

Powered by Google App Engine
This is Rietveld 408576698