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

Unified Diff: webkit/glue/plugins/pepper_url_request_info.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 | « webkit/glue/glue_serialize.cc ('k') | webkit/glue/weburlloader_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/pepper_url_request_info.cc
===================================================================
--- webkit/glue/plugins/pepper_url_request_info.cc (revision 59537)
+++ webkit/glue/plugins/pepper_url_request_info.cc (working copy)
@@ -22,7 +22,6 @@
#include "webkit/glue/webkit_glue.h"
using WebKit::WebData;
-using WebKit::WebFileInfo;
using WebKit::WebHTTPBody;
using WebKit::WebString;
using WebKit::WebFrame;
@@ -217,13 +216,11 @@
http_body.initialize();
for (size_t i = 0; i < body_.size(); ++i) {
if (body_[i].file_ref) {
- WebFileInfo file_info;
- file_info.modificationTime = body_[i].expected_last_modified_time;
http_body.appendFileRange(
webkit_glue::FilePathToWebString(body_[i].file_ref->system_path()),
body_[i].start_offset,
body_[i].number_of_bytes,
- file_info);
+ body_[i].expected_last_modified_time);
} else {
DCHECK(!body_[i].data.empty());
http_body.appendData(WebData(body_[i].data));
« no previous file with comments | « webkit/glue/glue_serialize.cc ('k') | webkit/glue/weburlloader_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698