| Index: Source/core/html/HTMLIFrameElement.h
|
| diff --git a/Source/core/html/HTMLIFrameElement.h b/Source/core/html/HTMLIFrameElement.h
|
| index 5d9550dfa7b377a590251e68361ad7a5a363ea6b..7c6005e6924b13693c5c91fdbc593103df5817ce 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
|
|
|