| Index: third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp b/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
|
| index 5fabc4a9af0564879b4bf72a28b7c6bedc6fd161..ace232cb3d7c33096873482f7811ca6a5c1934b4 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
|
| @@ -483,6 +483,13 @@ bool HTMLPlugInElement::IsPluginElement() const {
|
| return true;
|
| }
|
|
|
| +bool HTMLPlugInElement::IsErrorplaceholder() {
|
| + if (PluginWidget() && PluginWidget()->IsPluginContainer() &&
|
| + PluginWidget()->IsErrorplaceholder())
|
| + return true;
|
| + return false;
|
| +}
|
| +
|
| void HTMLPlugInElement::DisconnectContentFrame() {
|
| HTMLFrameOwnerElement::DisconnectContentFrame();
|
| SetPersistedPlugin(nullptr);
|
|
|