| Index: remoting/protocol/host_video_dispatcher.h
|
| diff --git a/remoting/protocol/host_video_dispatcher.h b/remoting/protocol/host_video_dispatcher.h
|
| index 1e61540420a2778df53800e8e2aa45d19d7b87c6..19c7d1d770dd3e7999db88b75fb93330cece2ccf 100644
|
| --- a/remoting/protocol/host_video_dispatcher.h
|
| +++ b/remoting/protocol/host_video_dispatcher.h
|
| @@ -25,11 +25,11 @@ class HostVideoDispatcher : public ChannelDispatcherBase, public VideoStub {
|
| }
|
|
|
| // VideoStub interface.
|
| - void ProcessVideoPacket(scoped_ptr<VideoPacket> packet,
|
| + void ProcessVideoPacket(std::unique_ptr<VideoPacket> packet,
|
| const base::Closure& done) override;
|
|
|
| private:
|
| - void OnIncomingMessage(scoped_ptr<CompoundBuffer> message) override;
|
| + void OnIncomingMessage(std::unique_ptr<CompoundBuffer> message) override;
|
|
|
| VideoFeedbackStub* video_feedback_stub_ = nullptr;
|
|
|
|
|