| Index: ppapi/proxy/ppapi_proxy_test.cc
|
| diff --git a/ppapi/proxy/ppapi_proxy_test.cc b/ppapi/proxy/ppapi_proxy_test.cc
|
| index ac5b535ff88bf889651d05a3419927d3ab5ec48d..deeb8f48be3ad6b8f8ad24bb12fd2bdfb35986bd 100644
|
| --- a/ppapi/proxy/ppapi_proxy_test.cc
|
| +++ b/ppapi/proxy/ppapi_proxy_test.cc
|
| @@ -280,7 +280,7 @@ void HostProxyTestHarness::SetUpHarness() {
|
| host_dispatcher_.reset(new HostDispatcher(
|
| pp_module(),
|
| &MockGetInterface,
|
| - status_receiver_.get()));
|
| + status_receiver_.release()));
|
| host_dispatcher_->InitWithTestSink(&sink());
|
| HostDispatcher::SetForInstance(pp_instance(), host_dispatcher_.get());
|
| }
|
| @@ -297,7 +297,7 @@ void HostProxyTestHarness::SetUpHarnessWithChannel(
|
| host_dispatcher_.reset(new HostDispatcher(
|
| pp_module(),
|
| &MockGetInterface,
|
| - status_receiver_.get()));
|
| + status_receiver_.release()));
|
| ppapi::Preferences preferences;
|
| host_dispatcher_->InitHostWithChannel(&delegate_mock_, channel_handle,
|
| is_client, preferences);
|
|
|