Index: Source/core/html/HTMLDetailsElement.h |
diff --git a/Source/core/html/HTMLDetailsElement.h b/Source/core/html/HTMLDetailsElement.h |
index 63e447557922bd31642cb2e65686b67196fe1f58..39c7313551a7558bdda64eb70dbcecbd43b585d4 100644 |
--- a/Source/core/html/HTMLDetailsElement.h |
+++ b/Source/core/html/HTMLDetailsElement.h |
@@ -35,11 +35,15 @@ public: |
private: |
explicit HTMLDetailsElement(Document&); |
+ void toggleEventTimerFired(Timer<HTMLDetailsElement>*); |
+ void dispatchToggleEventAsync(); |
+ |
virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; |
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; |
virtual void didAddUserAgentShadowRoot(ShadowRoot&) OVERRIDE; |
virtual bool isInteractiveContent() const OVERRIDE; |
+ Timer<HTMLDetailsElement> m_toggleEventTimer; |
bool m_isOpen; |
}; |