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

Unified Diff: Source/modules/mediastream/RTCIceCandidateEvent.h

Issue 173363002: Move mediastream module to oilpan transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 7 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
« no previous file with comments | « Source/modules/mediastream/RTCIceCandidate.idl ('k') | Source/modules/mediastream/RTCIceCandidateEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/RTCIceCandidateEvent.h
diff --git a/Source/modules/mediastream/RTCIceCandidateEvent.h b/Source/modules/mediastream/RTCIceCandidateEvent.h
index 489da2f18392d07e25f3360716bb153584ce2f42..0065b4e3ea537b09cbb5e2cc998cc3e1ddf3173b 100644
--- a/Source/modules/mediastream/RTCIceCandidateEvent.h
+++ b/Source/modules/mediastream/RTCIceCandidateEvent.h
@@ -36,7 +36,7 @@ public:
virtual ~RTCIceCandidateEvent();
static PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> create();
- static PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> create(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate>);
+ static PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> create(bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<RTCIceCandidate>);
RTCIceCandidate* candidate() const;
@@ -46,9 +46,9 @@ public:
private:
RTCIceCandidateEvent();
- RTCIceCandidateEvent(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate>);
+ RTCIceCandidateEvent(bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<RTCIceCandidate>);
- RefPtr<RTCIceCandidate> m_candidate;
+ RefPtrWillBeMember<RTCIceCandidate> m_candidate;
};
} // namespace WebCore
« no previous file with comments | « Source/modules/mediastream/RTCIceCandidate.idl ('k') | Source/modules/mediastream/RTCIceCandidateEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698