| Index: webkit/plugins/ppapi/ppapi_webplugin_impl.cc
|
| ===================================================================
|
| --- webkit/plugins/ppapi/ppapi_webplugin_impl.cc (revision 102885)
|
| +++ webkit/plugins/ppapi/ppapi_webplugin_impl.cc (working copy)
|
| @@ -122,7 +122,7 @@
|
| }
|
|
|
| void WebPluginImpl::paint(WebCanvas* canvas, const WebRect& rect) {
|
| - if (!instance_->IsFullscreenOrPending())
|
| + if (!instance_->FlashIsFullscreenOrPending())
|
| instance_->Paint(canvas, plugin_rect_, rect);
|
| }
|
|
|
| @@ -132,7 +132,7 @@
|
| const WebVector<WebRect>& cut_outs_rects,
|
| bool is_visible) {
|
| plugin_rect_ = window_rect;
|
| - if (!instance_->IsFullscreenOrPending())
|
| + if (!instance_->FlashIsFullscreenOrPending())
|
| instance_->ViewChanged(plugin_rect_, clip_rect);
|
| }
|
|
|
| @@ -149,7 +149,7 @@
|
|
|
| bool WebPluginImpl::handleInputEvent(const WebKit::WebInputEvent& event,
|
| WebKit::WebCursorInfo& cursor_info) {
|
| - if (instance_->IsFullscreenOrPending())
|
| + if (instance_->FlashIsFullscreenOrPending())
|
| return false;
|
| return instance_->HandleInputEvent(event, &cursor_info);
|
| }
|
|
|