Commit 2233759a authored by bbudge's avatar bbudge Committed by Commit bot

Changes PepperPluginInstanceImpl::IsRectTopmost to not use

container_ if we are destroying the instance.

BUG=476590

Review URL: https://codereview.chromium.org/1085423004

Cr-Commit-Position: refs/heads/master@{#325561}
parent 101ed37a
...@@ -3135,6 +3135,9 @@ bool PepperPluginInstanceImpl::FlashSetFullscreen(bool fullscreen, ...@@ -3135,6 +3135,9 @@ bool PepperPluginInstanceImpl::FlashSetFullscreen(bool fullscreen,
} }
bool PepperPluginInstanceImpl::IsRectTopmost(const gfx::Rect& rect) { bool PepperPluginInstanceImpl::IsRectTopmost(const gfx::Rect& rect) {
if (is_deleted_)
return false;
if (flash_fullscreen_) if (flash_fullscreen_)
return true; return true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment