OLD | NEW |
---|---|
(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 | |
OLD | NEW |