Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1531)

Unified Diff: content/renderer/media/webrtc/rtc_rtp_contributing_source.h

Issue 2813443003: Revert of RTCRtpReceiver.getContributingSources() added. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/BUILD.gn ('k') | content/renderer/media/webrtc/rtc_rtp_contributing_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
deleted file mode 100644
index f287435e572c83f8cfdcf8bb75db170ebb2b0518..0000000000000000000000000000000000000000
--- a/content/renderer/media/webrtc/rtc_rtp_contributing_source.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// 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:
- explicit RTCRtpContributingSource(const webrtc::RtpSource& source);
- ~RTCRtpContributingSource() override;
-
- blink::WebRTCRtpContributingSourceType SourceType() const override;
- double TimestampMs() const override;
- uint32_t Source() const override;
-
- private:
- const webrtc::RtpSource source_;
-
- DISALLOW_COPY_AND_ASSIGN(RTCRtpContributingSource);
-};
-
-} // namespace content
-
-#endif // CONTENT_RENDERER_MEDIA_WEBRTC_RTC_RTP_CONTRIBUTING_SOURCE_H_
« no previous file with comments | « content/renderer/BUILD.gn ('k') | content/renderer/media/webrtc/rtc_rtp_contributing_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698