Chromium Code Reviews| 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 4776be946ec6595d1aa18b36e3d276be8fa785e5..29df583fd9ea4fbb7e27c01e83df66a06288d9d0 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; |
| - RawPtr<EventListener> listener; |
| + EventListener* listener; |
| EventListenerOptionsOrBoolean options; |
| { |
|
sof
2016/04/12 07:29:54
tangential question - do you know why the extra sc
|
| type = info[0]; |
| @@ -131,7 +131,7 @@ void V8EventTarget::removeEventListenerMethodCustom(const v8::FunctionCallbackIn |
| return; |
| } |
| V8StringResource<> type; |
| - RawPtr<EventListener> listener; |
| + EventListener* listener; |
| EventListenerOptionsOrBoolean options; |
| { |
| type = info[0]; |