| 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 <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "base/message_loop/message_loop.h" |
| 12 #include "base/path_service.h" | 13 #include "base/path_service.h" |
| 13 #include "base/run_loop.h" | 14 #include "base/run_loop.h" |
| 14 #include "base/single_thread_task_runner.h" | 15 #include "base/single_thread_task_runner.h" |
| 15 #include "base/strings/stringprintf.h" | 16 #include "base/strings/stringprintf.h" |
| 16 #include "base/synchronization/lock.h" | 17 #include "base/synchronization/lock.h" |
| 17 #include "base/threading/thread.h" | 18 #include "base/threading/thread.h" |
| 18 #include "base/threading/thread_task_runner_handle.h" | 19 #include "base/threading/thread_task_runner_handle.h" |
| 19 #include "crypto/nss_util.h" | 20 #include "crypto/nss_util.h" |
| 20 #include "net/base/test_completion_callback.h" | 21 #include "net/base/test_completion_callback.h" |
| 21 #include "net/http/http_response_headers.h" | 22 #include "net/http/http_response_headers.h" |
| (...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 612 INSTANTIATE_TEST_CASE_P( | 613 INSTANTIATE_TEST_CASE_P( |
| 613 EmbeddedTestServerThreadingTestInstantiation, | 614 EmbeddedTestServerThreadingTestInstantiation, |
| 614 EmbeddedTestServerThreadingTest, | 615 EmbeddedTestServerThreadingTest, |
| 615 testing::Combine(testing::Bool(), | 616 testing::Combine(testing::Bool(), |
| 616 testing::Bool(), | 617 testing::Bool(), |
| 617 testing::Values(EmbeddedTestServer::TYPE_HTTP, | 618 testing::Values(EmbeddedTestServer::TYPE_HTTP, |
| 618 EmbeddedTestServer::TYPE_HTTPS))); | 619 EmbeddedTestServer::TYPE_HTTPS))); |
| 619 | 620 |
| 620 } // namespace test_server | 621 } // namespace test_server |
| 621 } // namespace net | 622 } // namespace net |
| OLD | NEW |