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

Unified Diff: third_party/WebKit/Source/modules/mediastream/RTCDataChannelEvent.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/modules/mediastream/RTCDataChannelEvent.h
diff --git a/third_party/WebKit/Source/modules/mediastream/RTCDataChannelEvent.h b/third_party/WebKit/Source/modules/mediastream/RTCDataChannelEvent.h
index 85dfd854ca75ff7fa9eb181f03e789d336c43b62..3f6f8a1f5ef5de376cacd9c325db17c568951f29 100644
--- a/third_party/WebKit/Source/modules/mediastream/RTCDataChannelEvent.h
+++ b/third_party/WebKit/Source/modules/mediastream/RTCDataChannelEvent.h
@@ -36,8 +36,8 @@ class RTCDataChannelEvent final : public Event {
public:
~RTCDataChannelEvent() override;
- static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create();
- static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
+ static RawPtr<RTCDataChannelEvent> create();
+ static RawPtr<RTCDataChannelEvent> create(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
RTCDataChannel* channel() const;
@@ -49,7 +49,7 @@ private:
RTCDataChannelEvent();
RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
- PersistentWillBeMember<RTCDataChannel> m_channel;
+ Member<RTCDataChannel> m_channel;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698