Index: Source/core/dom/ScriptExecutionContext.h |
diff --git a/Source/core/dom/ScriptExecutionContext.h b/Source/core/dom/ScriptExecutionContext.h |
index 020aa205499fc32098c786dc1e74bf813df038d2..0d9884478476795935e817c1f7a9507361045aed 100644 |
--- a/Source/core/dom/ScriptExecutionContext.h |
+++ b/Source/core/dom/ScriptExecutionContext.h |
@@ -174,8 +174,8 @@ private: |
virtual PassOwnPtr<ContextLifecycleNotifier> createLifecycleNotifier(); |
// Implementation details for DOMTimer. No other classes should call these functions. |
- int installNewTimeout(PassOwnPtr<ScheduledAction>, int timeout, bool singleShot); |
- void removeTimeoutByID(int timeoutID); // This makes underlying DOMTimer instance destructed. |
+ int installNewTimeout(DOMTimer::TimerType, PassOwnPtr<ScheduledAction>, int timeout); |
+ void removeTimeoutByIDIfTypeMatches(DOMTimer::TimerType, int timeoutID); // This makes underlying DOMTimer instance destructed. |
HashSet<MessagePort*> m_messagePorts; |