Index: content/public/renderer/webrtc_cast_send_transport.cc |
diff --git a/content/public/renderer/webrtc_cast_send_transport.cc b/content/public/renderer/webrtc_cast_send_transport.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..45bc9ab015204bc703a074da076270b9d1ae5971 |
--- /dev/null |
+++ b/content/public/renderer/webrtc_cast_send_transport.cc |
@@ -0,0 +1,27 @@ |
+// Copyright 2013 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. |
+ |
+#include "content/public/renderer/webrtc_cast_send_transport.h" |
+ |
+namespace content { |
+ |
+WebRtcCodecSpecificParam::WebRtcCodecSpecificParam() { |
jam
2013/10/11 16:47:14
are you sure you need this file?
the destructors
Alpha Left Google
2013/10/11 20:24:21
Yes clang complained about it if they (ctor and dt
|
+} |
+ |
+WebRtcCodecSpecificParam::~WebRtcCodecSpecificParam() { |
+} |
+ |
+WebRtcRtpPayloadParam::WebRtcRtpPayloadParam() { |
+} |
+ |
+WebRtcRtpPayloadParam::~WebRtcRtpPayloadParam() { |
+} |
+ |
+WebRtcRtpCaps::WebRtcRtpCaps() { |
+} |
+ |
+WebRtcRtpCaps::~WebRtcRtpCaps() { |
+} |
+ |
+} // namespace content |