OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 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 #ifndef CHROME_RENDERER_MEDIA_CAST_TRANSPORT_SENDER_IPC_H_ |
| 6 #define CHROME_RENDERER_MEDIA_CAST_TRANSPORT_SENDER_IPC_H_ |
| 7 |
| 8 #include "base/message_loop/message_loop_proxy.h" |
| 9 #include "ipc/ipc_channel_proxy.h" |
| 10 #include "media/cast/transport/cast_transport_sender.h" |
| 11 |
| 12 media::cast::transport::CastTransportSender* NewCastTransportSenderIPC( |
| 13 const media::cast::transport::CastTransportConfig& config, |
| 14 const media::cast::transport::CastTransportStatusCallback& status_cb); |
| 15 |
| 16 scoped_refptr<IPC::ChannelProxy::MessageFilter> NewCastIPCDispatcher( |
| 17 const scoped_refptr<base::MessageLoopProxy>& io_message_loop); |
| 18 |
| 19 #endif // CHROME_RENDERER_MEDIA_CAST_TRANSPORT_SENDER_IPC_H_ |
OLD | NEW |