| 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 "net/test/embedded_test_server/embedded_test_server.h" | 5 #include "net/test/embedded_test_server/embedded_test_server.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 | 67 |
| 68 HttpListenSocket::~HttpListenSocket() { | 68 HttpListenSocket::~HttpListenSocket() { |
| 69 DCHECK(thread_checker_.CalledOnValidThread()); | 69 DCHECK(thread_checker_.CalledOnValidThread()); |
| 70 } | 70 } |
| 71 | 71 |
| 72 EmbeddedTestServer::EmbeddedTestServer( | 72 EmbeddedTestServer::EmbeddedTestServer( |
| 73 const scoped_refptr<base::SingleThreadTaskRunner>& io_thread) | 73 const scoped_refptr<base::SingleThreadTaskRunner>& io_thread) |
| 74 : io_thread_(io_thread), | 74 : io_thread_(io_thread), |
| 75 port_(-1), | 75 port_(-1), |
| 76 weak_factory_(this) { | 76 weak_factory_(this) { |
| 77 DCHECK(io_thread_); | 77 DCHECK(io_thread_.get()); |
| 78 DCHECK(thread_checker_.CalledOnValidThread()); | 78 DCHECK(thread_checker_.CalledOnValidThread()); |
| 79 } | 79 } |
| 80 | 80 |
| 81 EmbeddedTestServer::~EmbeddedTestServer() { | 81 EmbeddedTestServer::~EmbeddedTestServer() { |
| 82 DCHECK(thread_checker_.CalledOnValidThread()); | 82 DCHECK(thread_checker_.CalledOnValidThread()); |
| 83 | 83 |
| 84 if (Started() && !ShutdownAndWaitUntilComplete()) { | 84 if (Started() && !ShutdownAndWaitUntilComplete()) { |
| 85 LOG(ERROR) << "EmbeddedTestServer failed to shut down."; | 85 LOG(ERROR) << "EmbeddedTestServer failed to shut down."; |
| 86 } | 86 } |
| 87 } | 87 } |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 std::map<StreamListenSocket*, HttpConnection*>::iterator it = | 238 std::map<StreamListenSocket*, HttpConnection*>::iterator it = |
| 239 connections_.find(socket); | 239 connections_.find(socket); |
| 240 if (it == connections_.end()) { | 240 if (it == connections_.end()) { |
| 241 return NULL; | 241 return NULL; |
| 242 } | 242 } |
| 243 return it->second; | 243 return it->second; |
| 244 } | 244 } |
| 245 | 245 |
| 246 } // namespace test_server | 246 } // namespace test_server |
| 247 } // namespace net | 247 } // namespace net |
| OLD | NEW |