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

Unified Diff: content/public/renderer/webrtc_cast_send_transport.cc

Issue 26931002: Define Cast Content API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revised API and comments Created 7 years, 2 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
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

Powered by Google App Engine
This is Rietveld 408576698