| Index: third_party/WebKit/Source/modules/mediastream/RTCIceCandidateEvent.h
|
| diff --git a/third_party/WebKit/Source/modules/mediastream/RTCIceCandidateEvent.h b/third_party/WebKit/Source/modules/mediastream/RTCIceCandidateEvent.h
|
| index fa456a3351b541ca4b58d6d1bcb12cd35d435d05..fc82b39b6bd30441558c2334b5d71778d23a56be 100644
|
| --- a/third_party/WebKit/Source/modules/mediastream/RTCIceCandidateEvent.h
|
| +++ b/third_party/WebKit/Source/modules/mediastream/RTCIceCandidateEvent.h
|
| @@ -36,8 +36,8 @@ class RTCIceCandidateEvent final : public Event {
|
| public:
|
| ~RTCIceCandidateEvent() override;
|
|
|
| - static PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> create();
|
| - static PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> create(bool canBubble, bool cancelable, RTCIceCandidate*);
|
| + static RawPtr<RTCIceCandidateEvent> create();
|
| + static RawPtr<RTCIceCandidateEvent> create(bool canBubble, bool cancelable, RTCIceCandidate*);
|
|
|
| RTCIceCandidate* candidate() const;
|
|
|
| @@ -49,7 +49,7 @@ private:
|
| RTCIceCandidateEvent();
|
| RTCIceCandidateEvent(bool canBubble, bool cancelable, RTCIceCandidate*);
|
|
|
| - PersistentWillBeMember<RTCIceCandidate> m_candidate;
|
| + Member<RTCIceCandidate> m_candidate;
|
| };
|
|
|
| } // namespace blink
|
|
|