Index: media/cast/test/utility/in_process_receiver.h |
diff --git a/media/cast/test/utility/in_process_receiver.h b/media/cast/test/utility/in_process_receiver.h |
index cd957d4f778ec400300446aae4804382df0e71cc..abcb6ad112fbda41c13b16c7ad2ca246481a75f3 100644 |
--- a/media/cast/test/utility/in_process_receiver.h |
+++ b/media/cast/test/utility/in_process_receiver.h |
@@ -64,6 +64,8 @@ class InProcessReceiver { |
// After this call, it is safe to destroy this object on any thread. |
virtual void Stop(); |
+ void ReceivePacket(scoped_ptr<Packet> packet); |
miu
2016/02/22 22:38:48
Don't make this method public. Instead, make the
xjz
2016/02/23 21:51:47
Done.
|
+ |
protected: |
// To be implemented by subclasses. These are called on the Cast MAIN thread |
// as each frame is received. |
@@ -102,8 +104,6 @@ class InProcessReceiver { |
void PullNextAudioFrame(); |
void PullNextVideoFrame(); |
- void ReceivePacket(scoped_ptr<Packet> packet); |
- |
const scoped_refptr<CastEnvironment> cast_environment_; |
const net::IPEndPoint local_end_point_; |
const net::IPEndPoint remote_end_point_; |