| Index: third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp b/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp
|
| index d94c8b288f2dcd725c780fd769e416c0fc0ece9b..fa7d16e6b93a8e911175cf2bcd39bb0233f398c6 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp
|
| @@ -45,13 +45,13 @@
|
|
|
| namespace blink {
|
|
|
| -RawPtr<ScheduledAction> ScheduledAction::create(ScriptState* scriptState, const ScriptValue& handler, const Vector<ScriptValue>& arguments)
|
| +ScheduledAction* ScheduledAction::create(ScriptState* scriptState, const ScriptValue& handler, const Vector<ScriptValue>& arguments)
|
| {
|
| ASSERT(handler.isFunction());
|
| return new ScheduledAction(scriptState, handler, arguments);
|
| }
|
|
|
| -RawPtr<ScheduledAction> ScheduledAction::create(ScriptState* scriptState, const String& handler)
|
| +ScheduledAction* ScheduledAction::create(ScriptState* scriptState, const String& handler)
|
| {
|
| return new ScheduledAction(scriptState, handler);
|
| }
|
|
|