| Index: Source/core/html/HTMLIFrameElement.h
|
| diff --git a/Source/core/html/HTMLIFrameElement.h b/Source/core/html/HTMLIFrameElement.h
|
| index b352894557d85a796dd18caf03c279e085f69683..c4b935ed47c741d010abcc6420a7fc8c3ff24ba7 100644
|
| --- a/Source/core/html/HTMLIFrameElement.h
|
| +++ b/Source/core/html/HTMLIFrameElement.h
|
| @@ -49,7 +49,11 @@ private:
|
|
|
| virtual void didRecalcStyle(StyleChange) OVERRIDE;
|
|
|
| + virtual bool loadedNonEmptyDocument() const OVERRIDE { return m_didLoadNonEmptyDocument; }
|
| + virtual void didLoadNonEmptyDocument() OVERRIDE { m_didLoadNonEmptyDocument = true; }
|
| +
|
| AtomicString m_name;
|
| + bool m_didLoadNonEmptyDocument;
|
| };
|
|
|
| } // namespace WebCore
|
|
|