summaryrefslogtreecommitdiffstats
path: root/WebCore/dom/Document.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/dom/Document.h')
-rw-r--r--WebCore/dom/Document.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/WebCore/dom/Document.h b/WebCore/dom/Document.h
index e119d40..1fb7079 100644
--- a/WebCore/dom/Document.h
+++ b/WebCore/dom/Document.h
@@ -88,7 +88,7 @@ class HTMLInputElement;
class HTMLMapElement;
class HitTestRequest;
class HitTestResult;
-class InspectorTimelineAgent;
+class InspectorController;
class IntPoint;
class DOMWrapperWorld;
class JSNode;
@@ -261,6 +261,7 @@ public:
DEFINE_ATTRIBUTE_EVENT_LISTENER(error);
DEFINE_ATTRIBUTE_EVENT_LISTENER(focus);
DEFINE_ATTRIBUTE_EVENT_LISTENER(load);
+ DEFINE_ATTRIBUTE_EVENT_LISTENER(readystatechange);
// WebKit extensions
DEFINE_ATTRIBUTE_EVENT_LISTENER(beforecut);
@@ -486,7 +487,6 @@ public:
Page* page() const; // can be NULL
Settings* settings() const; // can be NULL
#if ENABLE(INSPECTOR)
- InspectorTimelineAgent* inspectorTimelineAgent() const; // can be NULL
virtual InspectorController* inspectorController() const; // can be NULL
#endif
@@ -1096,6 +1096,8 @@ private:
PassRefPtr<NodeList> handleZeroPadding(const HitTestRequest&, HitTestResult&) const;
+ void loadEventDelayTimerFired(Timer<Document>*);
+
OwnPtr<CSSStyleSelector> m_styleSelector;
bool m_didCalculateStyleSelector;
@@ -1340,6 +1342,7 @@ private:
#endif
int m_loadEventDelayCount;
+ Timer<Document> m_loadEventDelayTimer;
ViewportArguments m_viewportArguments;
};