OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
acolwell GONE FROM CHROMIUM
2014/02/11 00:57:38
nit: s/(c) 2013/2014/
hubbe
2014/02/12 00:54:24
Done.
| |
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( | |
acolwell GONE FROM CHROMIUM
2014/02/11 00:57:38
There is only one implementation for each of these
hubbe
2014/02/12 00:54:24
The point of using factory method is to speed up c
| |
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 |