| Index: third_party/WebKit/Source/bindings/core/v8/ScheduledAction.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.h b/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.h
|
| index 11fd9bb49af1d0b3e25278154bbbf4733a587299..816eab1a56ce84b096bb6120c3cd7f5bd34f7a23 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.h
|
| @@ -45,12 +45,11 @@ class LocalFrame;
|
| class ExecutionContext;
|
| class WorkerGlobalScope;
|
|
|
| -class ScheduledAction final : public NoBaseWillBeGarbageCollectedFinalized<ScheduledAction> {
|
| +class ScheduledAction final : public GarbageCollectedFinalized<ScheduledAction> {
|
| WTF_MAKE_NONCOPYABLE(ScheduledAction);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(ScheduledAction);
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<ScheduledAction> create(ScriptState*, const ScriptValue& handler, const Vector<ScriptValue>& arguments);
|
| - static PassOwnPtrWillBeRawPtr<ScheduledAction> create(ScriptState*, const String& handler);
|
| + static RawPtr<ScheduledAction> create(ScriptState*, const ScriptValue& handler, const Vector<ScriptValue>& arguments);
|
| + static RawPtr<ScheduledAction> create(ScriptState*, const String& handler);
|
|
|
| ~ScheduledAction();
|
| DECLARE_TRACE();
|
|
|