| 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 b2512ed573b34027997e7dd7424a8a0b26f52a91..7669a2f4ef6974c2d73afbba9f89337f4a37020d 100644
 | 
| --- a/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp
 | 
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp
 | 
| @@ -45,15 +45,15 @@
 | 
|  
 | 
|  namespace blink {
 | 
|  
 | 
| -PassOwnPtrWillBeRawPtr<ScheduledAction> ScheduledAction::create(ScriptState* scriptState, const ScriptValue& handler, const Vector<ScriptValue>& arguments)
 | 
| +RawPtr<ScheduledAction> ScheduledAction::create(ScriptState* scriptState, const ScriptValue& handler, const Vector<ScriptValue>& arguments)
 | 
|  {
 | 
|      ASSERT(handler.isFunction());
 | 
| -    return adoptPtrWillBeNoop(new ScheduledAction(scriptState, handler, arguments));
 | 
| +    return (new ScheduledAction(scriptState, handler, arguments));
 | 
|  }
 | 
|  
 | 
| -PassOwnPtrWillBeRawPtr<ScheduledAction> ScheduledAction::create(ScriptState* scriptState, const String& handler)
 | 
| +RawPtr<ScheduledAction> ScheduledAction::create(ScriptState* scriptState, const String& handler)
 | 
|  {
 | 
| -    return adoptPtrWillBeNoop(new ScheduledAction(scriptState, handler));
 | 
| +    return (new ScheduledAction(scriptState, handler));
 | 
|  }
 | 
|  
 | 
|  DEFINE_TRACE(ScheduledAction)
 | 
| 
 |