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

Unified Diff: Source/core/frame/DOMTimerCoordinator.cpp

Issue 1160123004: Oilpan: safely finalize DOMTimers. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix grammatical error in comment Created 5 years, 6 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 | « Source/core/frame/DOMTimer.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/DOMTimerCoordinator.cpp
diff --git a/Source/core/frame/DOMTimerCoordinator.cpp b/Source/core/frame/DOMTimerCoordinator.cpp
index f6ae6fe9764c7b2386494c7ce87d3a72ad6a9446..1ff74af3fe769bf668b86ece024497335ce0218a 100644
--- a/Source/core/frame/DOMTimerCoordinator.cpp
+++ b/Source/core/frame/DOMTimerCoordinator.cpp
@@ -36,7 +36,7 @@ void DOMTimerCoordinator::removeTimeoutByID(int timeoutID)
return;
if (DOMTimer* removedTimer = m_timers.get(timeoutID))
- removedTimer->dispose();
+ removedTimer->disposeTimer();
m_timers.remove(timeoutID);
}
« no previous file with comments | « Source/core/frame/DOMTimer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698