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

Side by Side Diff: chrome/renderer/media/cast_transport_sender_ipc.h

Issue 138753004: Cast: IPC glue between cast library transport and encoders. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sorted deps Created 6 years, 10 months 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
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698