diff options
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/proxy/ppp_instance_proxy.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ppapi/proxy/ppp_instance_proxy.cc b/ppapi/proxy/ppp_instance_proxy.cc index ff52d68..bfc9102 100644 --- a/ppapi/proxy/ppp_instance_proxy.cc +++ b/ppapi/proxy/ppp_instance_proxy.cc @@ -70,13 +70,6 @@ void DidChangeView(PP_Instance instance, PP_Resource view_resource) { return; } - // TODO(yzshen): For debugging crbug.com/156730. According to the crash - // report, sometimes the plugin side receives a ViewData object with mostly - // default values, e.g., device_scale is set to 0. We crash here to find out - // in what circumstances the renderer side would send such a value. - // Must be revomved on the next day. - CHECK(enter.object()->GetData().device_scale > 0.0f); - dispatcher->Send(new PpapiMsg_PPPInstance_DidChangeView( API_ID_PPP_INSTANCE, instance, enter.object()->GetData(), IsFlashFullscreen(instance, dispatcher))); |