Index: mojo/edk/system/ipc_support.h |
diff --git a/mojo/edk/system/ipc_support.h b/mojo/edk/system/ipc_support.h |
index 3cb948a75ccfc7663370aa396a297b461b9a90cf..a9cc30eac948637872d0ca32135420671cb79100 100644 |
--- a/mojo/edk/system/ipc_support.h |
+++ b/mojo/edk/system/ipc_support.h |
@@ -17,6 +17,7 @@ |
#include "mojo/edk/system/channel_id.h" |
#include "mojo/edk/system/connection_identifier.h" |
#include "mojo/edk/system/process_identifier.h" |
+#include "mojo/edk/system/ref_ptr.h" |
#include "mojo/public/cpp/system/macros.h" |
namespace mojo { |
@@ -99,7 +100,7 @@ class IPCSupport { |
// |
// TODO(vtl): Add some more channel management functionality to this class. |
// Maybe make this callback interface more sane. |
- scoped_refptr<system::MessagePipeDispatcher> ConnectToSlave( |
+ RefPtr<MessagePipeDispatcher> ConnectToSlave( |
const ConnectionIdentifier& connection_id, |
embedder::SlaveInfo slave_info, |
embedder::ScopedPlatformHandle platform_handle, |
@@ -115,7 +116,7 @@ class IPCSupport { |
// |ConnectToSlave()|. |
// |
// TODO(vtl): |ConnectToSlave()|'s channel management TODO also applies here. |
- scoped_refptr<system::MessagePipeDispatcher> ConnectToMaster( |
+ RefPtr<MessagePipeDispatcher> ConnectToMaster( |
const ConnectionIdentifier& connection_id, |
const base::Closure& callback, |
scoped_refptr<base::TaskRunner> callback_thread_task_runner, |