| Index: third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.h b/third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.h
|
| index ea19fbaa285e042d56b8224b7e602ca1b0a63e70..363c9fd1193bf77272485e4fd720d3340655827a 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8AbstractEventListener.h
|
| @@ -84,7 +84,7 @@ public:
|
| // as it may attempt to compile a function (lazy event listener), get an error
|
| // and invoke onerror callback which can execute arbitrary JS code.
|
| // Protect this event listener to keep it alive.
|
| - RefPtrWillBeRawPtr<V8AbstractEventListener> protect(this);
|
| + RawPtr<V8AbstractEventListener> protect(this);
|
| prepareListenerObject(executionContext);
|
| return m_listener.newLocal(m_isolate);
|
| }
|
| @@ -148,7 +148,7 @@ private:
|
| v8::Isolate* m_isolate;
|
|
|
| // nullptr unless this listener belongs to a worker.
|
| - RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope;
|
| + Member<WorkerGlobalScope> m_workerGlobalScope;
|
|
|
| #if ENABLE(OILPAN)
|
| SelfKeepAlive<V8AbstractEventListener> m_keepAlive;
|
|
|