| 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..719f48905ab3e89e1fa1242617875d41b521246d 100644
|
| --- a/webkit/plugins/ppapi/resource_creation_impl.cc
|
| +++ b/webkit/plugins/ppapi/resource_creation_impl.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "webkit/plugins/ppapi/resource_creation_impl.h"
|
|
|
| +#include "base/logging.h"
|
| #include "ppapi/c/pp_size.h"
|
| #include "ppapi/shared_impl/audio_config_impl.h"
|
| #include "ppapi/shared_impl/input_event_impl.h"
|
| @@ -23,6 +24,7 @@
|
| #include "webkit/plugins/ppapi/ppb_font_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_graphics_2d_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_graphics_3d_impl.h"
|
| +#include "webkit/plugins/ppapi/ppb_hello_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_image_data_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_scrollbar_impl.h"
|
| #include "webkit/plugins/ppapi/ppb_surface_3d_impl.h"
|
| @@ -178,6 +180,12 @@ PP_Resource ResourceCreationImpl::CreateGraphics3DRaw(
|
| return PPB_Graphics3D_Impl::CreateRaw(instance, share_context, attrib_list);
|
| }
|
|
|
| +PP_Resource ResourceCreationImpl::CreateHello(PP_Instance instance)
|
| +{
|
| + LOG(ERROR) << "CreateHello";
|
| + return PPB_Hello_Impl::Create(instance);
|
| +}
|
| +
|
| PP_Resource ResourceCreationImpl::CreateImageData(PP_Instance instance,
|
| PP_ImageDataFormat format,
|
| const PP_Size& size,
|
|
|