| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "net/base/address_list.h" | 8 #include "net/base/address_list.h" |
| 9 #include "net/base/completion_callback.h" | 9 #include "net/base/completion_callback.h" |
| 10 #include "net/base/io_buffer.h" | 10 #include "net/base/io_buffer.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 explicit MockTCPSocket(const net::AddressList& address_list) | 26 explicit MockTCPSocket(const net::AddressList& address_list) |
| 27 : net::TCPClientSocket(address_list, NULL, net::NetLog::Source()) { | 27 : net::TCPClientSocket(address_list, NULL, net::NetLog::Source()) { |
| 28 } | 28 } |
| 29 | 29 |
| 30 MOCK_METHOD3(Read, int(net::IOBuffer* buf, int buf_len, | 30 MOCK_METHOD3(Read, int(net::IOBuffer* buf, int buf_len, |
| 31 const net::CompletionCallback& callback)); | 31 const net::CompletionCallback& callback)); |
| 32 MOCK_METHOD3(Write, int(net::IOBuffer* buf, int buf_len, | 32 MOCK_METHOD3(Write, int(net::IOBuffer* buf, int buf_len, |
| 33 const net::CompletionCallback& callback)); | 33 const net::CompletionCallback& callback)); |
| 34 MOCK_METHOD2(SetKeepAlive, bool(bool enable, int delay)); | 34 MOCK_METHOD2(SetKeepAlive, bool(bool enable, int delay)); |
| 35 MOCK_METHOD1(SetNoDelay, bool(bool no_delay)); | 35 MOCK_METHOD1(SetNoDelay, bool(bool no_delay)); |
| 36 virtual bool IsConnected() const OVERRIDE { | 36 virtual bool IsConnected() const override { |
| 37 return true; | 37 return true; |
| 38 } | 38 } |
| 39 | 39 |
| 40 private: | 40 private: |
| 41 DISALLOW_COPY_AND_ASSIGN(MockTCPSocket); | 41 DISALLOW_COPY_AND_ASSIGN(MockTCPSocket); |
| 42 }; | 42 }; |
| 43 | 43 |
| 44 class MockTCPServerSocket : public net::TCPServerSocket { | 44 class MockTCPServerSocket : public net::TCPServerSocket { |
| 45 public: | 45 public: |
| 46 explicit MockTCPServerSocket() | 46 explicit MockTCPServerSocket() |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 EXPECT_CALL(*tcp_server_socket, Listen(_, _)).Times(1); | 225 EXPECT_CALL(*tcp_server_socket, Listen(_, _)).Times(1); |
| 226 EXPECT_CALL(handler, OnAccept(_, _)); | 226 EXPECT_CALL(handler, OnAccept(_, _)); |
| 227 | 227 |
| 228 std::string err_msg; | 228 std::string err_msg; |
| 229 EXPECT_EQ(net::OK, socket->Listen("127.0.0.1", 9999, 10, &err_msg)); | 229 EXPECT_EQ(net::OK, socket->Listen("127.0.0.1", 9999, 10, &err_msg)); |
| 230 socket->Accept(base::Bind(&CompleteHandler::OnAccept, | 230 socket->Accept(base::Bind(&CompleteHandler::OnAccept, |
| 231 base::Unretained(&handler))); | 231 base::Unretained(&handler))); |
| 232 } | 232 } |
| 233 | 233 |
| 234 } // namespace extensions | 234 } // namespace extensions |
| OLD | NEW |