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

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

Issue 847803002: Make ScriptStreamer and dependents Oilpan friendly. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add ScriptSourceCode::isNull() comment Created 5 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 | « Source/core/frame/DOMTimerCoordinator.h ('k') | Source/core/frame/DOMWindowTimers.cpp » ('j') | 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 3b3eb0780cc1ae5204a3f3af891293b1639a4be3..1564dfd413c3f1b30ec5ae5389746f88b332c362 100644
--- a/Source/core/frame/DOMTimerCoordinator.cpp
+++ b/Source/core/frame/DOMTimerCoordinator.cpp
@@ -6,6 +6,7 @@
#include "core/frame/DOMTimerCoordinator.h"
#include "core/dom/ExecutionContext.h"
+#include "core/frame/DOMTimer.h"
namespace blink {
@@ -15,7 +16,7 @@ DOMTimerCoordinator::DOMTimerCoordinator()
{
}
-int DOMTimerCoordinator::installNewTimeout(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot)
+int DOMTimerCoordinator::installNewTimeout(ExecutionContext* context, PassOwnPtrWillBeRawPtr<ScheduledAction> action, int timeout, bool singleShot)
{
// FIXME: DOMTimers depends heavily on ExecutionContext. Decouple them.
ASSERT(context->timers() == this);
« no previous file with comments | « Source/core/frame/DOMTimerCoordinator.h ('k') | Source/core/frame/DOMWindowTimers.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698