Index: content/renderer/media/webrtc/rtc_rtp_contributing_source.h |
diff --git a/content/renderer/media/webrtc/rtc_rtp_contributing_source.h b/content/renderer/media/webrtc/rtc_rtp_contributing_source.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c59c4bb71f8c66101365764db29554fe127771a1 |
--- /dev/null |
+++ b/content/renderer/media/webrtc/rtc_rtp_contributing_source.h |
@@ -0,0 +1,32 @@ |
+// Copyright (c) 2017 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CONTENT_RENDERER_MEDIA_WEBRTC_RTC_RTP_CONTRIBUTING_SOURCE_H_ |
+#define CONTENT_RENDERER_MEDIA_WEBRTC_RTC_RTP_CONTRIBUTING_SOURCE_H_ |
+ |
+#include "base/macros.h" |
+#include "base/memory/ref_counted.h" |
+#include "content/common/content_export.h" |
+#include "third_party/WebKit/public/platform/WebRTCRtpContributingSource.h" |
+#include "third_party/webrtc/api/rtpreceiverinterface.h" |
+ |
+namespace content { |
+ |
+class CONTENT_EXPORT RTCRtpContributingSource |
+ : public blink::WebRTCRtpContributingSource { |
+ public: |
+ RTCRtpContributingSource(const webrtc::RtpSource& source); |
+ ~RTCRtpContributingSource() override; |
+ |
+ blink::WebRTCRtpContributingSourceType sourceType() const override; |
+ double timestamp() const override; |
+ uint32_t source() const override; |
+ |
+ private: |
+ const webrtc::RtpSource source_; |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_RENDERER_MEDIA_WEBRTC_RTC_RTP_CONTRIBUTING_SOURCE_H_ |