Chromium Code Reviews| 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); |