Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1020)

Unified Diff: third_party/WebKit/Source/core/dom/Document.h

Issue 2191533003: Refactor Timer classes in preparation for landing FrameTimers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More build fixes Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/Document.h
diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h
index 1a45f92f1230e66ee05822249fd165e7302cac7a..2bffa53418a1883cc144824eecbf1e4f2687d197 100644
--- a/third_party/WebKit/Source/core/dom/Document.h
+++ b/third_party/WebKit/Source/core/dom/Document.h
@@ -1161,21 +1161,21 @@ private:
KURL virtualCompleteURL(const String&) const final; // Same as completeURL() for the same reason as above.
void updateTitle(const String&);
- void updateFocusAppearanceTimerFired(Timer<Document>*);
+ void updateFocusAppearanceTimerFired(TimerBase*);
void updateBaseURL();
void executeScriptsWaitingForResources();
- void loadEventDelayTimerFired(Timer<Document>*);
- void pluginLoadingTimerFired(Timer<Document>*);
+ void loadEventDelayTimerFired(TimerBase*);
+ void pluginLoadingTimerFired(TimerBase*);
void addListenerType(ListenerType listenerType) { m_listenerTypes |= listenerType; }
void addMutationEventListenerTypeIfEnabled(ListenerType);
- void didAssociateFormControlsTimerFired(Timer<Document>*);
+ void didAssociateFormControlsTimerFired(TimerBase*);
void clearFocusedElementSoon();
- void clearFocusedElementTimerFired(Timer<Document>*);
+ void clearFocusedElementTimerFired(TimerBase*);
bool haveScriptBlockingStylesheetsLoaded() const;
bool haveRenderBlockingStylesheetsLoaded() const;
@@ -1378,7 +1378,7 @@ private:
Member<V0CustomElementRegistrationContext> m_registrationContext;
Member<V0CustomElementMicrotaskRunQueue> m_customElementMicrotaskRunQueue;
- void elementDataCacheClearTimerFired(Timer<Document>*);
+ void elementDataCacheClearTimerFired(TimerBase*);
Timer<Document> m_elementDataCacheClearTimer;
Member<ElementDataCache> m_elementDataCache;
« no previous file with comments | « third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698