| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 RTCRtpContributingSource_h | 5 #ifndef RTCRtpContributingSource_h |
| 6 #define RTCRtpContributingSource_h | 6 #define RTCRtpContributingSource_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptWrappable.h" | 8 #include "platform/bindings/ScriptWrappable.h" |
| 9 #include "platform/heap/GarbageCollected.h" | 9 #include "platform/heap/GarbageCollected.h" |
| 10 #include "platform/heap/Member.h" | 10 #include "platform/heap/Member.h" |
| 11 #include "platform/heap/Visitor.h" | 11 #include "platform/heap/Visitor.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 class RTCRtpReceiver; | 15 class RTCRtpReceiver; |
| 16 class WebRTCRtpContributingSource; | 16 class WebRTCRtpContributingSource; |
| 17 | 17 |
| 18 // https://w3c.github.io/webrtc-pc/#dom-rtcrtpcontributingsource | 18 // https://w3c.github.io/webrtc-pc/#dom-rtcrtpcontributingsource |
| (...skipping 14 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 private: | 34 private: |
| 35 Member<RTCRtpReceiver> receiver_; | 35 Member<RTCRtpReceiver> receiver_; |
| 36 double timestamp_ms_; | 36 double timestamp_ms_; |
| 37 const uint32_t source_; | 37 const uint32_t source_; |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 } // namespace blink | 40 } // namespace blink |
| 41 | 41 |
| 42 #endif // RTCRtpContributingSource_h | 42 #endif // RTCRtpContributingSource_h |
| OLD | NEW |