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 717b83050ea380ff07664bcb1e3328a69c40cfd4..8ab5387583111cc5ed880f53fc4f5a31547443f3 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_video_capture_impl.h" |
#include "webkit/plugins/ppapi/ppb_video_decoder_impl.h" |
#include "webkit/plugins/ppapi/ppb_x509_certificate_private_impl.h" |
#include "webkit/plugins/ppapi/resource_helper.h" |
@@ -282,14 +281,6 @@ PP_Resource ResourceCreationImpl::CreateURLLoader(PP_Instance instance) { |
return (new PPB_URLLoader_Impl(instance, false))->GetReference(); |
} |
-PP_Resource ResourceCreationImpl::CreateVideoCapture(PP_Instance instance) { |
- scoped_refptr<PPB_VideoCapture_Impl> video_capture = |
- new PPB_VideoCapture_Impl(instance); |
- if (!video_capture->Init()) |
- return 0; |
- return video_capture->GetReference(); |
-} |
- |
PP_Resource ResourceCreationImpl::CreateVideoDecoder( |
PP_Instance instance, |
PP_Resource graphics3d_id, |