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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/public/renderer/webrtc_cast_send_transport.h"
6
7 namespace content {
8
9 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
10 }
11
12 WebRtcCodecSpecificParam::~WebRtcCodecSpecificParam() {
13 }
14
15 WebRtcRtpPayloadParam::WebRtcRtpPayloadParam() {
16 }
17
18 WebRtcRtpPayloadParam::~WebRtcRtpPayloadParam() {
19 }
20
21 WebRtcRtpCaps::WebRtcRtpCaps() {
22 }
23
24 WebRtcRtpCaps::~WebRtcRtpCaps() {
25 }
26
27 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698