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 |
deleted file mode 100644 |
index ca254ca5a74dbc9c92ad5d3b6e49e5d228202c60..0000000000000000000000000000000000000000 |
--- a/mojo/services/network/web_socket_factory_impl.h |
+++ /dev/null |
@@ -1,37 +0,0 @@ |
-// Copyright 2015 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef MOJO_SERVICES_NETWORK_WEB_SOCKET_FACTORY_IMPL_H_ |
-#define MOJO_SERVICES_NETWORK_WEB_SOCKET_FACTORY_IMPL_H_ |
- |
-#include "base/compiler_specific.h" |
-#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/message_loop_ref.h" |
- |
-namespace mojo { |
-class NetworkContext; |
- |
-class WebSocketFactoryImpl : public WebSocketFactory { |
- public: |
- WebSocketFactoryImpl(NetworkContext* context, |
- scoped_ptr<MessageLoopRef> app_refcount, |
- InterfaceRequest<WebSocketFactory> request); |
- ~WebSocketFactoryImpl() override; |
- |
- // WebSocketFactory methods: |
- void CreateWebSocket(InterfaceRequest<WebSocket> socket) override; |
- |
- private: |
- NetworkContext* context_; |
- scoped_ptr<MessageLoopRef> app_refcount_; |
- StrongBinding<WebSocketFactory> binding_; |
- |
- DISALLOW_COPY_AND_ASSIGN(WebSocketFactoryImpl); |
-}; |
- |
-} // namespace mojo |
- |
-#endif // MOJO_SERVICES_NETWORK_WEB_SOCKET_FACTORY_IMPL_H_ |