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

Unified Diff: Source/core/accessibility/AXObjectCache.cpp

Issue 189833009: Trace where timers were scheduled in Blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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: Source/core/accessibility/AXObjectCache.cpp
diff --git a/Source/core/accessibility/AXObjectCache.cpp b/Source/core/accessibility/AXObjectCache.cpp
index ad6a5cdba943a72401a977b6a54667d11e3049b3..a897c780260e91e1acf3a7e0d73f8a163ceb803f 100644
--- a/Source/core/accessibility/AXObjectCache.cpp
+++ b/Source/core/accessibility/AXObjectCache.cpp
@@ -767,7 +767,7 @@ void AXObjectCache::postNotification(AXObject* object, Document* document, AXNot
if (postType == PostAsynchronously) {
m_notificationsToPost.append(std::make_pair(object, notification));
if (!m_notificationPostTimer.isActive())
- m_notificationPostTimer.startOneShot(0);
+ m_notificationPostTimer.startOneShot(0, FROM_HERE);
} else {
postPlatformNotification(object, notification);
}

Powered by Google App Engine
This is Rietveld 408576698