Chromium Code Reviews| Index: Source/core/html/HTMLIFrameElement.h |
| diff --git a/Source/core/html/HTMLIFrameElement.h b/Source/core/html/HTMLIFrameElement.h |
| index b352894557d85a796dd18caf03c279e085f69683..074ade6fde09fd616b66d8d3f34d8c27f861cb3a 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; } |
|
Nate Chapin
2013/05/08 16:06:55
Space after OVERRIDE I believe.
|
| + |
| AtomicString m_name; |
| + bool m_didLoadNonEmptyDocument; |
| }; |
| } // namespace WebCore |