Index: Source/core/html/HTMLPlugInElement.h |
diff --git a/Source/core/html/HTMLPlugInElement.h b/Source/core/html/HTMLPlugInElement.h |
index 15d56ebf42fcb4d298b9d98db715a21db2f237a0..874ae161618f18cd699f81d874327c7dbe3bbc94 100644 |
--- a/Source/core/html/HTMLPlugInElement.h |
+++ b/Source/core/html/HTMLPlugInElement.h |
@@ -63,6 +63,9 @@ public: |
void requestPluginCreationWithoutRendererIfPossible(); |
void createPluginWithoutRenderer(); |
+ bool usePlaceholderContent() { return m_usePlaceholderContent; } |
+ void setUsePlaceholderContent(bool); |
+ |
protected: |
HTMLPlugInElement(const QualifiedName& tagName, Document&, bool createdByParser, PreferPlugInsForImagesOption); |
@@ -133,6 +136,7 @@ private: |
bool m_isCapturingMouseEvents; |
bool m_needsWidgetUpdate; |
bool m_shouldPreferPlugInsForImages; |
+ bool m_usePlaceholderContent; |
// Normally the Widget is stored in HTMLFrameOwnerElement::m_widget. |
// However, plugins can persist even when not rendered. In order to |