cast_udp_transport.cc revision 1e9bf3e0803691d0a228da41fc608347b6db4340
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 "chrome/renderer/media/cast_udp_transport.h"
6
7#include "base/logging.h"
8#include "chrome/renderer/media/cast_session.h"
9
10CastUdpTransport::CastUdpTransport()
11    : cast_session_(new CastSession()) {
12}
13
14CastUdpTransport::~CastUdpTransport() {
15}
16
17void CastUdpTransport::Start(const net::IPEndPoint& remote_address) {
18  NOTIMPLEMENTED();
19}
20
21void CastUdpTransport::Stop() {
22  NOTIMPLEMENTED();
23}
24