| Index: mojo/services/network/tcp_connected_socket_impl.h
|
| diff --git a/mojo/services/network/tcp_connected_socket_impl.h b/mojo/services/network/tcp_connected_socket_impl.h
|
| index 4611189bc36047bc5a824c3f0aa9614b08dba523..1131bf6da01741903d1723dcc7f942586d26124e 100644
|
| --- a/mojo/services/network/tcp_connected_socket_impl.h
|
| +++ b/mojo/services/network/tcp_connected_socket_impl.h
|
| @@ -10,7 +10,7 @@
|
| #include "mojo/message_pump/handle_watcher.h"
|
| #include "mojo/public/cpp/bindings/binding.h"
|
| #include "mojo/services/network/public/interfaces/tcp_connected_socket.mojom.h"
|
| -#include "mojo/shell/public/cpp/shell.h"
|
| +#include "mojo/shell/public/cpp/message_loop_ref.h"
|
| #include "net/socket/tcp_socket.h"
|
|
|
| namespace mojo {
|
| @@ -24,7 +24,7 @@ class TCPConnectedSocketImpl : public TCPConnectedSocket {
|
| ScopedDataPipeConsumerHandle send_stream,
|
| ScopedDataPipeProducerHandle receive_stream,
|
| InterfaceRequest<TCPConnectedSocket> request,
|
| - scoped_ptr<mojo::AppRefCount> app_refcount);
|
| + scoped_ptr<mojo::MessageLoopRef> app_refcount);
|
| ~TCPConnectedSocketImpl() override;
|
|
|
| private:
|
| @@ -69,7 +69,7 @@ class TCPConnectedSocketImpl : public TCPConnectedSocket {
|
| // To bind to the message pipe.
|
| Binding<TCPConnectedSocket> binding_;
|
|
|
| - scoped_ptr<mojo::AppRefCount> app_refcount_;
|
| + scoped_ptr<mojo::MessageLoopRef> app_refcount_;
|
|
|
| base::WeakPtrFactory<TCPConnectedSocketImpl> weak_ptr_factory_;
|
| };
|
|
|