Index: ppapi/proxy/ppapi_proxy_test.cc |
diff --git a/ppapi/proxy/ppapi_proxy_test.cc b/ppapi/proxy/ppapi_proxy_test.cc |
index 445f84bcdc01d2be63cbc11cfffe56f00330302b..eac6dfd6d451de6fd400e15e03e3a4e1638d09a9 100644 |
--- a/ppapi/proxy/ppapi_proxy_test.cc |
+++ b/ppapi/proxy/ppapi_proxy_test.cc |
@@ -276,7 +276,7 @@ void HostProxyTestHarness::SetUpHarness() { |
host_dispatcher_.reset(new HostDispatcher( |
pp_module(), |
&MockGetInterface, |
- status_receiver_.get())); |
+ status_receiver_.release())); |
dmichael (off chromium)
2012/06/12 21:25:46
This was causing a crash when I tried to run the u
|
host_dispatcher_->InitWithTestSink(&sink()); |
HostDispatcher::SetForInstance(pp_instance(), host_dispatcher_.get()); |
} |
@@ -293,7 +293,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); |