RTCPeerConnectionStats: Removed fixed TODO comments.

I forget to remove these when fixing them.

BUG=chromium:636818
NOTRY=True
NOPRESUBMIT=True

Review-Url: https://codereview.webrtc.org/2522023003
Cr-Commit-Position: refs/heads/master@{#15215}
This commit is contained in:
hbos 2016-11-23 07:43:23 -08:00 committed by Commit bot
parent 08be780512
commit 42eee12614

View File

@ -267,7 +267,6 @@ class RTCMediaStreamTrackStats final : public RTCStats {
}; };
// https://w3c.github.io/webrtc-stats/#pcstats-dict* // https://w3c.github.io/webrtc-stats/#pcstats-dict*
// TODO(hbos): Tracking bug crbug.com/636818
class RTCPeerConnectionStats final : public RTCStats { class RTCPeerConnectionStats final : public RTCStats {
public: public:
WEBRTC_RTCSTATS_DECL(); WEBRTC_RTCSTATS_DECL();
@ -277,11 +276,7 @@ class RTCPeerConnectionStats final : public RTCStats {
RTCPeerConnectionStats(const RTCPeerConnectionStats& other); RTCPeerConnectionStats(const RTCPeerConnectionStats& other);
~RTCPeerConnectionStats() override; ~RTCPeerConnectionStats() override;
// TODO(hbos): Collected by |RTCStatsCollector| but different than the spec.
// crbug.com/636818
RTCStatsMember<uint32_t> data_channels_opened; RTCStatsMember<uint32_t> data_channels_opened;
// TODO(hbos): Collected by |RTCStatsCollector| but different than the spec.
// crbug.com/636818
RTCStatsMember<uint32_t> data_channels_closed; RTCStatsMember<uint32_t> data_channels_closed;
}; };