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

Unified Diff: third_party/WebKit/Source/core/events/RegisteredEventListener.h

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (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/core/events/RegisteredEventListener.h
diff --git a/third_party/WebKit/Source/core/events/RegisteredEventListener.h b/third_party/WebKit/Source/core/events/RegisteredEventListener.h
index 99027301bee0b69e2afb9782d6cca9ae83446f87..048779cfd392cd78234801a33f02a12be9fb6e8b 100644
--- a/third_party/WebKit/Source/core/events/RegisteredEventListener.h
+++ b/third_party/WebKit/Source/core/events/RegisteredEventListener.h
@@ -32,7 +32,7 @@ namespace blink {
class RegisteredEventListener {
DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
public:
- RegisteredEventListener(PassRefPtrWillBeRawPtr<EventListener> listener, const EventListenerOptions& options)
+ RegisteredEventListener(RawPtr<EventListener> listener, const EventListenerOptions& options)
: listener(listener)
, useCapture(options.capture())
, passive(options.passive())
@@ -52,7 +52,7 @@ public:
return result;
}
- RefPtrWillBeMember<EventListener> listener;
+ Member<EventListener> listener;
unsigned useCapture : 1;
unsigned passive : 1;
};
« no previous file with comments | « third_party/WebKit/Source/core/events/PromiseRejectionEvent.h ('k') | third_party/WebKit/Source/core/events/RelatedEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698