| Index: webkit/plugins/ppapi/resource_creation_impl.cc
|
| diff --git a/webkit/plugins/ppapi/resource_creation_impl.cc b/webkit/plugins/ppapi/resource_creation_impl.cc
|
| index 6095d3b3cf15f7e694ae82945bbb759a56aee3ca..1c159017b86aa3a5b758f14da96b5fa335c83cd4 100644
|
| --- a/webkit/plugins/ppapi/resource_creation_impl.cc
|
| +++ b/webkit/plugins/ppapi/resource_creation_impl.cc
|
| @@ -31,7 +31,6 @@
|
| #include "webkit/plugins/ppapi/ppb_tcp_socket_private_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_udp_socket_private_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_url_loader_impl.h"
|
| -#include "webkit/plugins/ppapi/ppb_url_request_info_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_video_capture_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_video_decoder_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_video_layer_impl.h"
|
| @@ -278,12 +277,6 @@ PP_Resource ResourceCreationImpl::CreateURLLoader(PP_Instance instance) {
|
| return (new PPB_URLLoader_Impl(instance, false))->GetReference();
|
| }
|
|
|
| -PP_Resource ResourceCreationImpl::CreateURLRequestInfo(
|
| - PP_Instance instance,
|
| - const ::ppapi::PPB_URLRequestInfo_Data& data) {
|
| - return (new PPB_URLRequestInfo_Impl(instance, data))->GetReference();
|
| -}
|
| -
|
| PP_Resource ResourceCreationImpl::CreateVideoCapture(PP_Instance instance) {
|
| scoped_refptr<PPB_VideoCapture_Impl> video_capture =
|
| new PPB_VideoCapture_Impl(instance);
|
|
|