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

Unified Diff: third_party/WebKit/Source/modules/mediastream/RTCIceCandidateEvent.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/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

Powered by Google App Engine
This is Rietveld 408576698