Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(366)

Unified Diff: third_party/WebKit/Source/bindings/core/v8/custom/V8EventTargetCustom.cpp

Issue 1878943003: Remove RawPtr from bindings/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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];

Powered by Google App Engine
This is Rietveld 408576698