| Index: remoting/protocol/protobuf_video_reader.cc
|
| diff --git a/remoting/protocol/protobuf_video_reader.cc b/remoting/protocol/protobuf_video_reader.cc
|
| index 70ac3cf713ebf091f0a258bff8fec1f010e6c312..e809bd983d6b49a2c4a0516d455f106ef55cd406 100644
|
| --- a/remoting/protocol/protobuf_video_reader.cc
|
| +++ b/remoting/protocol/protobuf_video_reader.cc
|
| @@ -5,16 +5,16 @@
|
| #include "remoting/protocol/protobuf_video_reader.h"
|
|
|
| #include "base/task.h"
|
| -#include "remoting/protocol/chromotocol_connection.h"
|
| +#include "remoting/protocol/session.h"
|
|
|
| namespace remoting {
|
|
|
| ProtobufVideoReader::ProtobufVideoReader() { }
|
| ProtobufVideoReader::~ProtobufVideoReader() { }
|
|
|
| -void ProtobufVideoReader::Init(ChromotocolConnection* connection,
|
| +void ProtobufVideoReader::Init(protocol::Session* session,
|
| VideoStub* video_stub) {
|
| - reader_.Init<VideoPacket>(connection->video_channel(),
|
| + reader_.Init<VideoPacket>(session->video_channel(),
|
| NewCallback(this, &ProtobufVideoReader::OnNewData));
|
| video_stub_ = video_stub;
|
| }
|
|
|