| Index: remoting/protocol/host_control_dispatcher.cc
|
| diff --git a/remoting/protocol/host_control_dispatcher.cc b/remoting/protocol/host_control_dispatcher.cc
|
| index c81721903bd21ff20463e9ad4a81550d988f56db..7f3ea272e1affdf4c0aa8281ce3834115fe84815 100644
|
| --- a/remoting/protocol/host_control_dispatcher.cc
|
| +++ b/remoting/protocol/host_control_dispatcher.cc
|
| @@ -63,11 +63,11 @@ void HostControlDispatcher::SetCursorShape(
|
| }
|
|
|
| void HostControlDispatcher::OnIncomingMessage(
|
| - scoped_ptr<CompoundBuffer> buffer) {
|
| + std::unique_ptr<CompoundBuffer> buffer) {
|
| DCHECK(clipboard_stub_);
|
| DCHECK(host_stub_);
|
|
|
| - scoped_ptr<ControlMessage> message =
|
| + std::unique_ptr<ControlMessage> message =
|
| ParseMessage<ControlMessage>(buffer.get());
|
| if (!message)
|
| return;
|
|
|