| 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 2a02112cdbaee6277f744651168a2d0165e82fff..e0a1fb385a6decf168b638c26671ac4753c50cc2 100644
|
| --- a/webkit/plugins/ppapi/resource_creation_impl.cc
|
| +++ b/webkit/plugins/ppapi/resource_creation_impl.cc
|
| @@ -32,6 +32,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;
|
| @@ -293,6 +294,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,
|
|
|