| Index: mojo/spy/spy.cc
|
| diff --git a/mojo/spy/spy.cc b/mojo/spy/spy.cc
|
| index eb7fa353193b0c7a05201148840578d238958ffd..8de82290bf65a300fcce2e0f1117137ba5f8db46 100644
|
| --- a/mojo/spy/spy.cc
|
| +++ b/mojo/spy/spy.cc
|
| @@ -224,12 +224,12 @@ class MessageProcessor :
|
| // In charge of intercepting access to the service manager.
|
| class SpyInterceptor : public mojo::ApplicationManager::Interceptor {
|
| public:
|
| - explicit SpyInterceptor(scoped_refptr<mojo::SpyServerImpl> spy_server,
|
| - base::MessageLoopProxy* control_loop_proxy)
|
| + explicit SpyInterceptor(
|
| + scoped_refptr<mojo::SpyServerImpl> spy_server,
|
| + const scoped_refptr<base::MessageLoopProxy>& control_loop_proxy)
|
| : spy_server_(spy_server),
|
| proxy_(base::MessageLoopProxy::current()),
|
| - control_loop_proxy_(control_loop_proxy){
|
| - }
|
| + control_loop_proxy_(control_loop_proxy) {}
|
|
|
| private:
|
| virtual mojo::ServiceProviderPtr OnConnectToClient(
|
|
|