| Index: webkit/plugins/ppapi/plugin_module.cc
|
| diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc
|
| index 79e833f35960d89096b2dde97ae0fd868ff7e13a..05666398dca04bb8959f1c45b7f5d1c643045378 100644
|
| --- a/webkit/plugins/ppapi/plugin_module.cc
|
| +++ b/webkit/plugins/ppapi/plugin_module.cc
|
| @@ -202,8 +202,7 @@ PP_Bool ReadImageData(PP_Resource device_context_2d,
|
| EnterResource<PPB_Graphics2D_API> enter(device_context_2d, true);
|
| if (enter.failed())
|
| return PP_FALSE;
|
| - return BoolToPPBool(static_cast<PPB_Graphics2D_Impl*>(enter.object())->
|
| - ReadImageData(image, top_left));
|
| + return BoolToPPBool(enter.object()->ReadImageData(image, top_left));
|
| }
|
|
|
| void RunMessageLoop(PP_Instance instance) {
|
|
|