| 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 2a7984535aa6eaa22ca7b184511136d11476ca95..992d6e854c11f71a17636ba6cdaaa2d3e3273ab0 100644
|
| --- a/webkit/plugins/ppapi/resource_creation_impl.cc
|
| +++ b/webkit/plugins/ppapi/resource_creation_impl.cc
|
| @@ -33,6 +33,7 @@
|
| #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"
|
| +#include "webkit/plugins/ppapi/ppb_websocket_impl.h"
|
|
|
| using ppapi::InputEventData;
|
| using ppapi::InputEventImpl;
|
| @@ -307,6 +308,10 @@ PP_Resource ResourceCreationImpl::CreateVideoLayer(PP_Instance instance,
|
| return PPB_VideoLayer_Impl::Create(instance, mode);
|
| }
|
|
|
| +PP_Resource ResourceCreationImpl::CreateWebSocket(PP_Instance instance) {
|
| + return PPB_WebSocket_Impl::Create(instance);
|
| +}
|
| +
|
| PP_Resource ResourceCreationImpl::CreateWheelInputEvent(
|
| PP_Instance instance,
|
| PP_TimeTicks time_stamp,
|
|
|