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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (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/RelatedEvent.h
diff --git a/third_party/WebKit/Source/core/events/RelatedEvent.h b/third_party/WebKit/Source/core/events/RelatedEvent.h
index 8ac371adc559895d7c08a29d71c5feb9ed9702e1..eed825c4aa93dc5f6d998b9a692101c27cfc099c 100644
--- a/third_party/WebKit/Source/core/events/RelatedEvent.h
+++ b/third_party/WebKit/Source/core/events/RelatedEvent.h
@@ -13,9 +13,9 @@ namespace blink {
class RelatedEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<RelatedEvent> create();
- static PassRefPtrWillBeRawPtr<RelatedEvent> create(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget);
- static PassRefPtrWillBeRawPtr<RelatedEvent> create(const AtomicString& eventType, const RelatedEventInit&);
+ static RawPtr<RelatedEvent> create();
+ static RawPtr<RelatedEvent> create(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget);
+ static RawPtr<RelatedEvent> create(const AtomicString& eventType, const RelatedEventInit&);
~RelatedEvent() override;
@@ -31,7 +31,7 @@ private:
RelatedEvent(const AtomicString& type, bool canBubble, bool cancelable, EventTarget*);
RelatedEvent(const AtomicString& type, const RelatedEventInit&);
- RefPtrWillBeMember<EventTarget> m_relatedTarget;
+ Member<EventTarget> m_relatedTarget;
};
DEFINE_EVENT_TYPE_CASTS(RelatedEvent);

Powered by Google App Engine
This is Rietveld 408576698