| 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/macros.h" |
| 7 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
| 8 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 9 #include "base/run_loop.h" | 10 #include "base/run_loop.h" |
| 10 #include "base/single_thread_task_runner.h" | 11 #include "base/single_thread_task_runner.h" |
| 11 #include "base/strings/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
| 12 #include "base/synchronization/lock.h" | 13 #include "base/synchronization/lock.h" |
| 13 #include "base/threading/thread.h" | 14 #include "base/threading/thread.h" |
| 14 #include "crypto/nss_util.h" | 15 #include "crypto/nss_util.h" |
| 15 #include "net/base/test_completion_callback.h" | 16 #include "net/base/test_completion_callback.h" |
| 16 #include "net/http/http_response_headers.h" | 17 #include "net/http/http_response_headers.h" |
| (...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 INSTANTIATE_TEST_CASE_P( | 589 INSTANTIATE_TEST_CASE_P( |
| 589 EmbeddedTestServerThreadingTestInstantiation, | 590 EmbeddedTestServerThreadingTestInstantiation, |
| 590 EmbeddedTestServerThreadingTest, | 591 EmbeddedTestServerThreadingTest, |
| 591 testing::Combine(testing::Bool(), | 592 testing::Combine(testing::Bool(), |
| 592 testing::Bool(), | 593 testing::Bool(), |
| 593 testing::Values(EmbeddedTestServer::TYPE_HTTP, | 594 testing::Values(EmbeddedTestServer::TYPE_HTTP, |
| 594 EmbeddedTestServer::TYPE_HTTPS))); | 595 EmbeddedTestServer::TYPE_HTTPS))); |
| 595 | 596 |
| 596 } // namespace test_server | 597 } // namespace test_server |
| 597 } // namespace net | 598 } // namespace net |
| OLD | NEW |