Index: net/base/listen_socket.cc |
diff --git a/net/base/listen_socket.cc b/net/base/listen_socket.cc |
deleted file mode 100644 |
index 499bb76e661240a1345462f529dc892c82bf4313..0000000000000000000000000000000000000000 |
--- a/net/base/listen_socket.cc |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-// Copyright (c) 2012 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 "net/base/listen_socket.h" |
- |
-namespace net { |
- |
-ListenSocket::ListenSocket(ListenSocketDelegate* del) : socket_delegate_(del) {} |
- |
-ListenSocket::~ListenSocket() {} |
- |
-void ListenSocket::Send(const char* bytes, int len, bool append_linefeed) { |
- SendInternal(bytes, len); |
- if (append_linefeed) |
- SendInternal("\r\n", 2); |
-} |
- |
-void ListenSocket::Send(const std::string& str, bool append_linefeed) { |
- Send(str.data(), static_cast<int>(str.length()), append_linefeed); |
-} |
- |
-} // namespace net |