| Index: chrome/service/service_ipc_server.h | 
| diff --git a/chrome/service/service_ipc_server.h b/chrome/service/service_ipc_server.h | 
| index 7fd5d61a2da5c2e4bf0cf98f5bdb7fc6d1487edd..52a64325dbb79606c186af0a2fbca24baa68a8c3 100644 | 
| --- a/chrome/service/service_ipc_server.h | 
| +++ b/chrome/service/service_ipc_server.h | 
| @@ -36,7 +36,9 @@ class ServiceIPCServer : public IPC::Listener, public IPC::Sender { | 
|  | 
| // Safe to call on any thread, as long as it's guaranteed that the thread's | 
| // lifetime is less than the main thread. | 
| -  IPC::SyncMessageFilter* sync_message_filter() { return sync_message_filter_; } | 
| +  IPC::SyncMessageFilter* sync_message_filter() { | 
| +    return sync_message_filter_.get(); | 
| +  } | 
|  | 
| bool is_client_connected() const { return client_connected_; } | 
|  | 
|  |