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

Unified Diff: trunk/src/ppapi/shared_impl/url_request_info_data.cc

Issue 22903002: Revert 216744 "Pepper: Move FileRef to the "new" resource proxy." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 4 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: trunk/src/ppapi/shared_impl/url_request_info_data.cc
===================================================================
--- trunk/src/ppapi/shared_impl/url_request_info_data.cc (revision 217031)
+++ trunk/src/ppapi/shared_impl/url_request_info_data.cc (working copy)
@@ -17,7 +17,6 @@
URLRequestInfoData::BodyItem::BodyItem()
: is_file(false),
- file_ref_pp_resource(0),
start_offset(0),
number_of_bytes(-1),
expected_last_modified_time(0.0) {
@@ -26,7 +25,6 @@
URLRequestInfoData::BodyItem::BodyItem(const std::string& data)
: is_file(false),
data(data),
- file_ref_pp_resource(0),
start_offset(0),
number_of_bytes(-1),
expected_last_modified_time(0.0) {
@@ -38,8 +36,8 @@
int64_t number_of_bytes,
PP_Time expected_last_modified_time)
: is_file(true),
- file_ref_resource(file_ref),
- file_ref_pp_resource(file_ref->pp_resource()),
+ file_ref(file_ref),
+ file_ref_host_resource(file_ref->host_resource()),
start_offset(start_offset),
number_of_bytes(number_of_bytes),
expected_last_modified_time(expected_last_modified_time) {
« no previous file with comments | « trunk/src/ppapi/shared_impl/url_request_info_data.h ('k') | trunk/src/ppapi/shared_impl/url_response_info_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698