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

Side by Side Diff: chrome/renderer/media/cast_send_transport.cc

Issue 47343005: Data type conversion between extensions API and Cast API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed comments Created 7 years, 1 month 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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/renderer/media/cast_send_transport.h" 5 #include "chrome/renderer/media/cast_send_transport.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/renderer/media/cast_session.h" 8 #include "chrome/renderer/media/cast_session.h"
9 #include "chrome/renderer/media/cast_udp_transport.h" 9 #include "chrome/renderer/media/cast_udp_transport.h"
10 10
11 CastCodecSpecificParams::CastCodecSpecificParams() { 11 CastCodecSpecificParams::CastCodecSpecificParams() {
12 } 12 }
13 13
14 CastCodecSpecificParams::~CastCodecSpecificParams() { 14 CastCodecSpecificParams::~CastCodecSpecificParams() {
15 } 15 }
16 16
17 CastRtpPayloadParams::CastRtpPayloadParams() 17 CastRtpPayloadParams::CastRtpPayloadParams()
18 : payload_type(0), 18 : payload_type(0),
19 ssrc(0), 19 ssrc(0),
20 clock_rate(0), 20 clock_rate(0),
21 bitrate(0), 21 max_bitrate(0),
22 min_bitrate(0),
22 channels(0), 23 channels(0),
23 width(0), 24 width(0),
24 height(0) { 25 height(0) {
25 } 26 }
26 27
27 CastRtpPayloadParams::~CastRtpPayloadParams() { 28 CastRtpPayloadParams::~CastRtpPayloadParams() {
28 } 29 }
29 30
30 CastRtpCaps::CastRtpCaps() { 31 CastRtpCaps::CastRtpCaps() {
31 } 32 }
(...skipping 24 matching lines...) Expand all
56 return CastRtpParams(); 57 return CastRtpParams();
57 } 58 }
58 59
59 void CastSendTransport::Start(const CastRtpParams& params) { 60 void CastSendTransport::Start(const CastRtpParams& params) {
60 NOTIMPLEMENTED(); 61 NOTIMPLEMENTED();
61 } 62 }
62 63
63 void CastSendTransport::Stop() { 64 void CastSendTransport::Stop() {
64 NOTIMPLEMENTED(); 65 NOTIMPLEMENTED();
65 } 66 }
OLDNEW
« no previous file with comments | « chrome/renderer/media/cast_send_transport.h ('k') | chrome/test/data/extensions/api_test/webrtc_cast/basics.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698