Index: mojo/services/network/web_socket_factory_impl.h |
diff --git a/mojo/services/network/web_socket_factory_impl.h b/mojo/services/network/web_socket_factory_impl.h |
index 2763e7f442d698bd86e52c744eb384df3d50663c..ca254ca5a74dbc9c92ad5d3b6e49e5d228202c60 100644 |
--- a/mojo/services/network/web_socket_factory_impl.h |
+++ b/mojo/services/network/web_socket_factory_impl.h |
@@ -9,7 +9,7 @@ |
#include "base/macros.h" |
#include "mojo/public/cpp/bindings/strong_binding.h" |
#include "mojo/services/network/public/interfaces/web_socket_factory.mojom.h" |
-#include "mojo/shell/public/cpp/shell.h" |
+#include "mojo/shell/public/cpp/message_loop_ref.h" |
namespace mojo { |
class NetworkContext; |
@@ -17,7 +17,7 @@ class NetworkContext; |
class WebSocketFactoryImpl : public WebSocketFactory { |
public: |
WebSocketFactoryImpl(NetworkContext* context, |
- scoped_ptr<AppRefCount> app_refcount, |
+ scoped_ptr<MessageLoopRef> app_refcount, |
InterfaceRequest<WebSocketFactory> request); |
~WebSocketFactoryImpl() override; |
@@ -26,7 +26,7 @@ class WebSocketFactoryImpl : public WebSocketFactory { |
private: |
NetworkContext* context_; |
- scoped_ptr<AppRefCount> app_refcount_; |
+ scoped_ptr<MessageLoopRef> app_refcount_; |
StrongBinding<WebSocketFactory> binding_; |
DISALLOW_COPY_AND_ASSIGN(WebSocketFactoryImpl); |