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

Unified Diff: Source/core/dom/ScriptedIdleTaskController.h

Issue 1309593003: Oilpan: fix build after r200992. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: DocumentLoadTiming is a part object; adjust Created 5 years, 4 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 | Source/core/dom/ScriptedIdleTaskController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ScriptedIdleTaskController.h
diff --git a/Source/core/dom/ScriptedIdleTaskController.h b/Source/core/dom/ScriptedIdleTaskController.h
index f6805a19d8f5acf9c9772d4d200efbc4ff27683a..295cbcac391e6b5077ef04b2ecbff7e1d957b830 100644
--- a/Source/core/dom/ScriptedIdleTaskController.h
+++ b/Source/core/dom/ScriptedIdleTaskController.h
@@ -19,13 +19,15 @@ class ExecutionContext;
class IdleRequestCallback;
class DocumentLoadTiming;
-class ScriptedIdleTaskController : public RefCountedWillBeGarbageCollected<ScriptedIdleTaskController>, public ActiveDOMObject {
- DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(ScriptedIdleTaskController);
+class ScriptedIdleTaskController : public RefCountedWillBeGarbageCollectedFinalized<ScriptedIdleTaskController>, public ActiveDOMObject {
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ScriptedIdleTaskController);
public:
static PassRefPtrWillBeRawPtr<ScriptedIdleTaskController> create(ExecutionContext* context, const DocumentLoadTiming& timing)
{
return adoptRefWillBeNoop(new ScriptedIdleTaskController(context, timing));
}
+ ~ScriptedIdleTaskController();
+
DECLARE_TRACE();
using CallbackId = int;
« no previous file with comments | « no previous file | Source/core/dom/ScriptedIdleTaskController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698