| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_RENDERER_MEDIA_WEBRTC_MEDIA_STREAM_TRACK_METRICS_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_WEBRTC_MEDIA_STREAM_TRACK_METRICS_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_WEBRTC_MEDIA_STREAM_TRACK_METRICS_H_ | 6 #define CONTENT_RENDERER_MEDIA_WEBRTC_MEDIA_STREAM_TRACK_METRICS_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/sequence_checker.h" | 13 #include "base/sequence_checker.h" |
| 14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
| 15 #undef FOURCC // Macro from third_party/libyuv |
| 15 #include "third_party/webrtc/api/peerconnectioninterface.h" | 16 #include "third_party/webrtc/api/peerconnectioninterface.h" |
| 17 #undef FOURCC // Macro from third_party/webrtc |
| 16 | 18 |
| 17 namespace webrtc { | 19 namespace webrtc { |
| 18 class MediaStreamInterface; | 20 class MediaStreamInterface; |
| 19 } | 21 } |
| 20 | 22 |
| 21 namespace content { | 23 namespace content { |
| 22 | 24 |
| 23 class MediaStreamTrackMetricsObserver; | 25 class MediaStreamTrackMetricsObserver; |
| 24 class RTCPeerConnectionHandler; | 26 class RTCPeerConnectionHandler; |
| 25 | 27 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 webrtc::PeerConnectionInterface::IceConnectionState ice_state_; | 101 webrtc::PeerConnectionInterface::IceConnectionState ice_state_; |
| 100 | 102 |
| 101 SEQUENCE_CHECKER(sequence_checker_); | 103 SEQUENCE_CHECKER(sequence_checker_); |
| 102 | 104 |
| 103 DISALLOW_COPY_AND_ASSIGN(MediaStreamTrackMetrics); | 105 DISALLOW_COPY_AND_ASSIGN(MediaStreamTrackMetrics); |
| 104 }; | 106 }; |
| 105 | 107 |
| 106 } // namespace | 108 } // namespace |
| 107 | 109 |
| 108 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_MEDIA_STREAM_TRACK_METRICS_H_ | 110 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_MEDIA_STREAM_TRACK_METRICS_H_ |
| OLD | NEW |