Index: third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.h |
diff --git a/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.h b/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.h |
index 6e98e2b5979927c1dd03bc7946da95d527cce0e2..a3655ad4ec5d9653c063112a4f7b3a089c49ff88 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.h |
+++ b/third_party/WebKit/Source/bindings/core/v8/CustomElementConstructorBuilder.h |
@@ -65,7 +65,7 @@ public: |
bool isFeatureAllowed() const; |
bool validateOptions(const AtomicString& type, QualifiedName& tagName, ExceptionState&); |
- PassRefPtrWillBeRawPtr<CustomElementLifecycleCallbacks> createCallbacks(); |
+ RawPtr<CustomElementLifecycleCallbacks> createCallbacks(); |
bool createConstructor(Document*, CustomElementDefinition*, ExceptionState&); |
bool didRegisterDefinition() const; |
@@ -83,7 +83,7 @@ private: |
const ElementRegistrationOptions& m_options; |
v8::Local<v8::Object> m_prototype; |
v8::Local<v8::Function> m_constructor; |
- RefPtrWillBeMember<V8CustomElementLifecycleCallbacks> m_callbacks; |
+ Member<V8CustomElementLifecycleCallbacks> m_callbacks; |
}; |
} // namespace blink |