| Index: third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp
 | 
| diff --git a/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp b/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp
 | 
| index 7a634c9608328c73025ea32bb66fd541c825b3ef..f7696dfb8f2a42718a38b0f4d57cd0038b14137f 100644
 | 
| --- a/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp
 | 
| +++ b/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.cpp
 | 
| @@ -125,7 +125,7 @@ bool CustomElementConstructorBuilder::validateOptions(const AtomicString& type,
 | 
|      return true;
 | 
|  }
 | 
|  
 | 
| -PassRefPtrWillBeRawPtr<CustomElementLifecycleCallbacks> CustomElementConstructorBuilder::createCallbacks()
 | 
| +RawPtr<CustomElementLifecycleCallbacks> CustomElementConstructorBuilder::createCallbacks()
 | 
|  {
 | 
|      ASSERT(!m_prototype.IsEmpty());
 | 
|  
 | 
| @@ -282,7 +282,7 @@ static void constructCustomElement(const v8::FunctionCallbackInfo<v8::Value>& in
 | 
|  
 | 
|      ExceptionState exceptionState(ExceptionState::ConstructionContext, "CustomElement", info.Holder(), info.GetIsolate());
 | 
|      CustomElementProcessingStack::CallbackDeliveryScope deliveryScope;
 | 
| -    RefPtrWillBeRawPtr<Element> element = document->createElementNS(namespaceURI, tagName, maybeType->IsNull() ? nullAtom : type, exceptionState);
 | 
| +    RawPtr<Element> element = document->createElementNS(namespaceURI, tagName, maybeType->IsNull() ? nullAtom : type, exceptionState);
 | 
|      if (exceptionState.throwIfNeeded())
 | 
|          return;
 | 
|      v8SetReturnValueFast(info, element.release(), document);
 | 
| 
 |