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

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

Issue 2457593002: Move remaining Document timers to frame-specific task runners. (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 4b6f9af82925b087b63d4a96554de8df3ec39256..3a788e22745f84d744aa6490f90134c8f8ca0eed 100644
--- a/third_party/WebKit/Source/core/dom/Document.h
+++ b/third_party/WebKit/Source/core/dom/Document.h
@@ -1487,7 +1487,7 @@ class CORE_EXPORT Document : public ContainerNode,
m_executeScriptsWaitingForResourcesTask;
bool m_hasAutofocused;
- Timer<Document> m_clearFocusedElementTimer;
+ TaskRunnerTimer<Document> m_clearFocusedElementTimer;
Member<Element> m_autofocusElement;
Member<Element> m_focusedElement;
Member<Range> m_sequentialFocusNavigationStartingPoint;
@@ -1541,7 +1541,7 @@ class CORE_EXPORT Document : public ContainerNode,
Member<AXObjectCache> m_axObjectCache;
Member<DocumentMarkerController> m_markers;
- Timer<Document> m_updateFocusAppearanceTimer;
+ TaskRunnerTimer<Document> m_updateFocusAppearanceTimer;
Member<Element> m_cssTarget;
@@ -1633,7 +1633,7 @@ class CORE_EXPORT Document : public ContainerNode,
Member<V0CustomElementMicrotaskRunQueue> m_customElementMicrotaskRunQueue;
void elementDataCacheClearTimerFired(TimerBase*);
- Timer<Document> m_elementDataCacheClearTimer;
+ TaskRunnerTimer<Document> m_elementDataCacheClearTimer;
Member<ElementDataCache> m_elementDataCache;
@@ -1647,7 +1647,7 @@ class CORE_EXPORT Document : public ContainerNode,
Member<Document> m_templateDocument;
Member<Document> m_templateDocumentHost;
- Timer<Document> m_didAssociateFormControlsTimer;
+ TaskRunnerTimer<Document> m_didAssociateFormControlsTimer;
HeapHashSet<Member<SVGUseElement>> m_useElementsNeedingUpdate;
HeapHashSet<Member<Element>> m_layerUpdateSVGFilterElements;
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698