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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h

Issue 2641323002: Migrate Timer to TaskRunnerTimer in AXObjectCacheImpl (Closed)
Patch Set: rebase Created 3 years, 11 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/modules/accessibility/AXObjectCacheImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h b/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h
index 2f6632b9d3f815e02149eacb895cd161ab6d5c14..e62a59ba96fae0ff73fa66aa282dfdfd0ff461eb 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h
@@ -32,7 +32,6 @@
#include "core/dom/AXObjectCache.h"
#include "modules/ModulesExport.h"
#include "modules/accessibility/AXObject.h"
-#include "platform/Timer.h"
#include "wtf/Forward.h"
#include "wtf/HashMap.h"
#include "wtf/HashSet.h"
@@ -242,7 +241,7 @@ class MODULES_EXPORT AXObjectCacheImpl : public AXObjectCache {
// aria-owns relationship.
HashMap<String, std::unique_ptr<HashSet<AXID>>> m_idToAriaOwnersMapping;
- Timer<AXObjectCacheImpl> m_notificationPostTimer;
+ TaskRunnerTimer<AXObjectCacheImpl> m_notificationPostTimer;
HeapVector<std::pair<Member<AXObject>, AXNotification>> m_notificationsToPost;
void notificationPostTimerFired(TimerBase*);
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698