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

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

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 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];

Powered by Google App Engine
This is Rietveld 408576698