Index: mojo/services/network/web_socket_factory_impl.cc |
diff --git a/mojo/services/network/web_socket_factory_impl.cc b/mojo/services/network/web_socket_factory_impl.cc |
deleted file mode 100644 |
index 6adde55c5affc3d06b4e70ad09c39da63234d2f8..0000000000000000000000000000000000000000 |
--- a/mojo/services/network/web_socket_factory_impl.cc |
+++ /dev/null |
@@ -1,28 +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. |
- |
-#include "mojo/services/network/web_socket_factory_impl.h" |
- |
-#include <utility> |
- |
-#include "mojo/services/network/web_socket_impl.h" |
- |
-namespace mojo { |
- |
-WebSocketFactoryImpl::WebSocketFactoryImpl( |
- NetworkContext* context, |
- scoped_ptr<MessageLoopRef> app_refcount, |
- InterfaceRequest<WebSocketFactory> request) |
- : context_(context), |
- app_refcount_(std::move(app_refcount)), |
- binding_(this, std::move(request)) {} |
- |
-WebSocketFactoryImpl::~WebSocketFactoryImpl() { |
-} |
- |
-void WebSocketFactoryImpl::CreateWebSocket(InterfaceRequest<WebSocket> socket) { |
- new WebSocketImpl(context_, app_refcount_->Clone(), std::move(socket)); |
-} |
- |
-} // namespace mojo |