| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "extensions/browser/api/socket/tcp_socket.h" | 5 #include "extensions/browser/api/socket/tcp_socket.h" |
| 6 | 6 |
| 7 #include "base/lazy_instance.h" |
| 7 #include "base/logging.h" | 8 #include "base/logging.h" |
| 8 #include "base/macros.h" | 9 #include "base/macros.h" |
| 9 #include "extensions/browser/api/api_resource.h" | 10 #include "extensions/browser/api/api_resource.h" |
| 10 #include "net/base/address_list.h" | 11 #include "net/base/address_list.h" |
| 11 #include "net/base/ip_endpoint.h" | 12 #include "net/base/ip_endpoint.h" |
| 12 #include "net/base/net_errors.h" | 13 #include "net/base/net_errors.h" |
| 13 #include "net/base/rand_callback.h" | 14 #include "net/base/rand_callback.h" |
| 14 #include "net/socket/tcp_client_socket.h" | 15 #include "net/socket/tcp_client_socket.h" |
| 15 | 16 |
| 16 namespace extensions { | 17 namespace extensions { |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 | 350 |
| 350 bool ResumableTCPSocket::IsPersistent() const { return persistent(); } | 351 bool ResumableTCPSocket::IsPersistent() const { return persistent(); } |
| 351 | 352 |
| 352 ResumableTCPServerSocket::ResumableTCPServerSocket( | 353 ResumableTCPServerSocket::ResumableTCPServerSocket( |
| 353 const std::string& owner_extension_id) | 354 const std::string& owner_extension_id) |
| 354 : TCPSocket(owner_extension_id), persistent_(false), paused_(false) {} | 355 : TCPSocket(owner_extension_id), persistent_(false), paused_(false) {} |
| 355 | 356 |
| 356 bool ResumableTCPServerSocket::IsPersistent() const { return persistent(); } | 357 bool ResumableTCPServerSocket::IsPersistent() const { return persistent(); } |
| 357 | 358 |
| 358 } // namespace extensions | 359 } // namespace extensions |
| OLD | NEW |