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

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

Issue 173363002: Move mediastream module to oilpan transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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: Source/modules/mediastream/RTCIceCandidate.h
diff --git a/Source/modules/mediastream/RTCIceCandidate.h b/Source/modules/mediastream/RTCIceCandidate.h
index 9d934055751354a3e08d5ddff96ce530bd2bf155..53cde03ebdc41bd3fcb7bbc2be2b8dd5a8ef876b 100644
--- a/Source/modules/mediastream/RTCIceCandidate.h
+++ b/Source/modules/mediastream/RTCIceCandidate.h
@@ -43,10 +43,11 @@ namespace WebCore {
class Dictionary;
class ExceptionState;
-class RTCIceCandidate FINAL : public RefCounted<RTCIceCandidate>, public ScriptWrappable {
+class RTCIceCandidate FINAL : public RefCountedWillBeGarbageCollected<RTCIceCandidate>, public ScriptWrappable {
sof 2014/02/20 15:30:23 Add *Finalized
keishi 2014/02/21 08:00:25 Done.
+ DECLARE_GC_INFO;
public:
- static PassRefPtr<RTCIceCandidate> create(const Dictionary&, ExceptionState&);
- static PassRefPtr<RTCIceCandidate> create(blink::WebRTCICECandidate);
+ static PassRefPtrWillBeRawPtr<RTCIceCandidate> create(const Dictionary&, ExceptionState&);
+ static PassRefPtrWillBeRawPtr<RTCIceCandidate> create(blink::WebRTCICECandidate);
String candidate() const;
String sdpMid() const;
@@ -54,6 +55,8 @@ public:
blink::WebRTCICECandidate webCandidate();
+ void trace(Visitor*) { }
+
private:
explicit RTCIceCandidate(blink::WebRTCICECandidate);

Powered by Google App Engine
This is Rietveld 408576698