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

Unified Diff: webkit/glue/glue_serialize.cc

Issue 3405010: Change all callers of WebFileInfo::appendFileRange() to use the new... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
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 | « no previous file | webkit/glue/plugins/pepper_url_request_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/glue_serialize.cc
===================================================================
--- webkit/glue/glue_serialize.cc (revision 59537)
+++ webkit/glue/glue_serialize.cc (working copy)
@@ -20,7 +20,6 @@
#include "webkit/glue/webkit_glue.h"
using WebKit::WebData;
-using WebKit::WebFileInfo;
using WebKit::WebHistoryItem;
using WebKit::WebHTTPBody;
using WebKit::WebPoint;
@@ -240,7 +239,7 @@
WriteString(element.filePath, obj);
WriteInteger64(element.fileStart, obj);
WriteInteger64(element.fileLength, obj);
- WriteReal(element.fileInfo.modificationTime, obj);
+ WriteReal(element.modificationTime, obj);
} else {
WriteGURL(element.blobURL, obj);
}
@@ -273,13 +272,14 @@
WebString file_path = ReadString(obj);
long long file_start = 0;
long long file_length = -1;
- WebFileInfo file_info;
+ double modification_time = 0.0;
if (obj->version >= 8) {
file_start = ReadInteger64(obj);
file_length = ReadInteger64(obj);
- file_info.modificationTime = ReadReal(obj);
+ modification_time = ReadReal(obj);
}
- http_body.appendFileRange(file_path, file_start, file_length, file_info);
+ http_body.appendFileRange(file_path, file_start, file_length,
+ modification_time);
} else if (obj->version >= 10) {
GURL blob_url = ReadGURL(obj);
http_body.appendBlob(blob_url);
« no previous file with comments | « no previous file | webkit/glue/plugins/pepper_url_request_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698