| Index: third_party/WebKit/WebCore/dom/Document.h
|
| ===================================================================
|
| --- third_party/WebKit/WebCore/dom/Document.h (revision 9118)
|
| +++ third_party/WebKit/WebCore/dom/Document.h (working copy)
|
| @@ -64,7 +64,6 @@
|
| class Database;
|
| class DOMImplementation;
|
| class DOMSelection;
|
| - class DOMTimer;
|
| class DOMWindow;
|
| class DatabaseThread;
|
| class DocLoader;
|
| @@ -801,10 +800,6 @@
|
| virtual void resourceRetrievedByXMLHttpRequest(unsigned long identifier, const ScriptString& sourceString);
|
| virtual void postTask(PassRefPtr<Task>); // Executes the task on context's thread asynchronously.
|
|
|
| - void addTimeout(int timeoutId, DOMTimer*);
|
| - void removeTimeout(int timeoutId);
|
| - DOMTimer* findTimeout(int timeoutId);
|
| -
|
| protected:
|
| Document(Frame*, bool isXHTML);
|
|
|
| @@ -1149,8 +1144,6 @@
|
| bool m_inLowBandwidthDisplay;
|
| #endif
|
|
|
| - typedef HashMap<int, DOMTimer*> TimeoutsMap;
|
| - TimeoutsMap m_timeouts;
|
| };
|
|
|
| inline bool Document::hasElementWithId(AtomicStringImpl* id) const
|
|
|