| Index: third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp b/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
|
| index 6d06b0396795facefe76936fd206a699d25386bc..0edb3328a638b48f713e9e1b280b1fe4a49e1fe0 100644
|
| --- a/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
|
| @@ -190,6 +190,12 @@ void WebPluginContainerImpl::SetFocused(bool focused, WebFocusType focus_type) {
|
| web_plugin_->UpdateFocus(focused, focus_type);
|
| }
|
|
|
| +bool WebPluginContainerImpl::IsErrorplaceholder() {
|
| + if (!web_plugin_)
|
| + return false;
|
| + return web_plugin_->IsErrorPlaceholder();
|
| +}
|
| +
|
| void WebPluginContainerImpl::Show() {
|
| self_visible_ = true;
|
| web_plugin_->UpdateVisibility(true);
|
|
|