| Index: third_party/WebKit/Source/bindings/templates/methods.cpp
 | 
| diff --git a/third_party/WebKit/Source/bindings/templates/methods.cpp b/third_party/WebKit/Source/bindings/templates/methods.cpp
 | 
| index 9635de42385b087423694a017f971945ad118099..08c04deb31e2ab111f94521f1eead9a99e27535b 100644
 | 
| --- a/third_party/WebKit/Source/bindings/templates/methods.cpp
 | 
| +++ b/third_party/WebKit/Source/bindings/templates/methods.cpp
 | 
| @@ -116,7 +116,7 @@ static void {{method.name}}{{method.overload_index}}Method{{world_suffix}}(const
 | 
|  {% macro generate_argument_var_declaration(argument) %}
 | 
|  {# FIXME: remove EventListener special case #}
 | 
|  {% if argument.idl_type == 'EventListener' %}
 | 
| -RefPtrWillBeRawPtr<{{argument.idl_type}}> {{argument.name}}
 | 
| +RawPtr<{{argument.idl_type}}> {{argument.name}}
 | 
|  {%- else %}
 | 
|  {{argument.cpp_type}} {{argument.name}}
 | 
|  {%- endif %}{# argument.idl_type == 'EventListener' #}
 | 
| @@ -251,7 +251,7 @@ ExecutionContext* executionContext = currentExecutionContext(info.GetIsolate());
 | 
|  {% endif %}
 | 
|  {% if method.is_call_with_script_arguments %}
 | 
|  {# [CallWith=ScriptArguments] #}
 | 
| -RefPtrWillBeRawPtr<ScriptArguments> scriptArguments(ScriptArguments::create(scriptState, info, {{method.number_of_arguments}}));
 | 
| +RawPtr<ScriptArguments> scriptArguments(ScriptArguments::create(scriptState, info, {{method.number_of_arguments}}));
 | 
|  {% endif %}
 | 
|  {% if method.is_call_with_document %}
 | 
|  {# [ConstructorCallWith=Document] #}
 | 
| @@ -475,7 +475,7 @@ void postMessageImpl(const char* interfaceName, {{cpp_class}}* instance, const v
 | 
|          exceptionState.throwIfNeeded();
 | 
|          return;
 | 
|      }
 | 
| -    OwnPtrWillBeRawPtr<MessagePortArray> ports = adoptPtrWillBeNoop(new MessagePortArray);
 | 
| +    RawPtr<MessagePortArray> ports = (new MessagePortArray);
 | 
|      ArrayBufferArray arrayBuffers;
 | 
|      ImageBitmapArray imageBitmaps;
 | 
|      if (info.Length() > 1) {
 | 
| 
 |