Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: net/test/embedded_test_server/embedded_test_server_unittest.cc

Issue 2596283002: Include-what-you-use for ThreadTaskRunnerHandle. (Closed)
Patch Set: rebase Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/spdy/spdy_http_stream_unittest.cc ('k') | net/url_request/url_request_context.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/path_service.h" 12 #include "base/path_service.h"
13 #include "base/run_loop.h" 13 #include "base/run_loop.h"
14 #include "base/single_thread_task_runner.h" 14 #include "base/single_thread_task_runner.h"
15 #include "base/strings/stringprintf.h" 15 #include "base/strings/stringprintf.h"
16 #include "base/synchronization/lock.h" 16 #include "base/synchronization/lock.h"
17 #include "base/threading/thread.h" 17 #include "base/threading/thread.h"
18 #include "base/threading/thread_task_runner_handle.h"
18 #include "crypto/nss_util.h" 19 #include "crypto/nss_util.h"
19 #include "net/base/test_completion_callback.h" 20 #include "net/base/test_completion_callback.h"
20 #include "net/http/http_response_headers.h" 21 #include "net/http/http_response_headers.h"
21 #include "net/log/net_log_source.h" 22 #include "net/log/net_log_source.h"
22 #include "net/log/test_net_log.h" 23 #include "net/log/test_net_log.h"
23 #include "net/socket/client_socket_factory.h" 24 #include "net/socket/client_socket_factory.h"
24 #include "net/socket/stream_socket.h" 25 #include "net/socket/stream_socket.h"
25 #include "net/test/embedded_test_server/embedded_test_server_connection_listener .h" 26 #include "net/test/embedded_test_server/embedded_test_server_connection_listener .h"
26 #include "net/test/embedded_test_server/http_request.h" 27 #include "net/test/embedded_test_server/http_request.h"
27 #include "net/test/embedded_test_server/http_response.h" 28 #include "net/test/embedded_test_server/http_response.h"
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 INSTANTIATE_TEST_CASE_P( 601 INSTANTIATE_TEST_CASE_P(
601 EmbeddedTestServerThreadingTestInstantiation, 602 EmbeddedTestServerThreadingTestInstantiation,
602 EmbeddedTestServerThreadingTest, 603 EmbeddedTestServerThreadingTest,
603 testing::Combine(testing::Bool(), 604 testing::Combine(testing::Bool(),
604 testing::Bool(), 605 testing::Bool(),
605 testing::Values(EmbeddedTestServer::TYPE_HTTP, 606 testing::Values(EmbeddedTestServer::TYPE_HTTP,
606 EmbeddedTestServer::TYPE_HTTPS))); 607 EmbeddedTestServer::TYPE_HTTPS)));
607 608
608 } // namespace test_server 609 } // namespace test_server
609 } // namespace net 610 } // namespace net
OLDNEW
« no previous file with comments | « net/spdy/spdy_http_stream_unittest.cc ('k') | net/url_request/url_request_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698