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

Side by Side Diff: content/renderer/pepper/pepper_url_loader_host.cc

Issue 21966004: Pepper: Move FileRef to the "new" resource proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove code duplication 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/pepper/pepper_url_loader_host.h" 5 #include "content/renderer/pepper/pepper_url_loader_host.h"
6 6
7 #include "content/renderer/pepper/pepper_plugin_instance_impl.h" 7 #include "content/renderer/pepper/pepper_plugin_instance_impl.h"
8 #include "content/renderer/pepper/renderer_ppapi_host_impl.h" 8 #include "content/renderer/pepper/renderer_ppapi_host_impl.h"
9 #include "content/renderer/pepper/url_request_info_util.h" 9 #include "content/renderer/pepper/url_request_info_util.h"
10 #include "content/renderer/pepper/url_response_info_util.h" 10 #include "content/renderer/pepper/url_response_info_util.h"
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 return PP_ERROR_NOACCESS; 243 return PP_ERROR_NOACCESS;
244 } 244 }
245 245
246 if (loader_.get()) 246 if (loader_.get())
247 return PP_ERROR_INPROGRESS; 247 return PP_ERROR_INPROGRESS;
248 248
249 WebFrame* frame = GetFrame(); 249 WebFrame* frame = GetFrame();
250 if (!frame) 250 if (!frame)
251 return PP_ERROR_FAILED; 251 return PP_ERROR_FAILED;
252 WebURLRequest web_request; 252 WebURLRequest web_request;
253 if (!CreateWebURLRequest(&filled_in_request_data, frame, &web_request)) 253 if (!CreateWebURLRequest(pp_instance(),
254 &filled_in_request_data,
255 frame,
256 &web_request)) {
254 return PP_ERROR_FAILED; 257 return PP_ERROR_FAILED;
258 }
255 web_request.setRequestorProcessID(renderer_ppapi_host_->GetPluginPID()); 259 web_request.setRequestorProcessID(renderer_ppapi_host_->GetPluginPID());
256 260
257 WebURLLoaderOptions options; 261 WebURLLoaderOptions options;
258 if (has_universal_access_) { 262 if (has_universal_access_) {
259 options.allowCredentials = true; 263 options.allowCredentials = true;
260 options.crossOriginRequestPolicy = 264 options.crossOriginRequestPolicy =
261 WebURLLoaderOptions::CrossOriginRequestPolicyAllow; 265 WebURLLoaderOptions::CrossOriginRequestPolicyAllow;
262 } else { 266 } else {
263 // All other HTTP requests are untrusted. 267 // All other HTTP requests are untrusted.
264 options.untrustedHTTP = true; 268 options.untrustedHTTP = true;
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 ppapi::proxy::ResourceMessageReplyParams params; 417 ppapi::proxy::ResourceMessageReplyParams params;
414 SendUpdateToPlugin(new PpapiPluginMsg_URLLoader_UpdateProgress( 418 SendUpdateToPlugin(new PpapiPluginMsg_URLLoader_UpdateProgress(
415 record_upload ? bytes_sent_ : -1, 419 record_upload ? bytes_sent_ : -1,
416 record_upload ? total_bytes_to_be_sent_ : -1, 420 record_upload ? total_bytes_to_be_sent_ : -1,
417 record_download ? bytes_received_ : -1, 421 record_download ? bytes_received_ : -1,
418 record_download ? total_bytes_to_be_received_ : -1)); 422 record_download ? total_bytes_to_be_received_ : -1));
419 } 423 }
420 } 424 }
421 425
422 } // namespace content 426 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698