| Index: webkit/plugins/ppapi/plugin_module.cc
|
| diff --git a/webkit/plugins/ppapi/plugin_module.cc b/webkit/plugins/ppapi/plugin_module.cc
|
| index dd230ec8f63f4fe2d27152a707a184e52bed3d47..e9935542181b28c964745af30f6b6ec46464576a 100644
|
| --- a/webkit/plugins/ppapi/plugin_module.cc
|
| +++ b/webkit/plugins/ppapi/plugin_module.cc
|
| @@ -200,8 +200,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) {
|
|
|