| Index: third_party/WebKit/Source/bindings/core/v8/custom/V8EventTargetCustom.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8EventTargetCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8EventTargetCustom.cpp
|
| index 7e9fcc8b57228098d4cc6f51d23fb0f9627a32fd..4776be946ec6595d1aa18b36e3d276be8fa785e5 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/custom/V8EventTargetCustom.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8EventTargetCustom.cpp
|
| @@ -92,7 +92,7 @@ void V8EventTarget::addEventListenerMethodCustom(const v8::FunctionCallbackInfo<
|
| return;
|
| }
|
| V8StringResource<> type;
|
| - RefPtrWillBeRawPtr<EventListener> listener;
|
| + RawPtr<EventListener> listener;
|
| EventListenerOptionsOrBoolean options;
|
| {
|
| type = info[0];
|
| @@ -131,7 +131,7 @@ void V8EventTarget::removeEventListenerMethodCustom(const v8::FunctionCallbackIn
|
| return;
|
| }
|
| V8StringResource<> type;
|
| - RefPtrWillBeRawPtr<EventListener> listener;
|
| + RawPtr<EventListener> listener;
|
| EventListenerOptionsOrBoolean options;
|
| {
|
| type = info[0];
|
|
|