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

Side by Side Diff: components/grpc_support/test/quic_test_server.cc

Issue 2876013002: Add missing IWYU message_loop.h includes. (Closed)
Patch Set: fix upstream Created 3 years, 7 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "components/grpc_support/test/quic_test_server.h" 5 #include "components/grpc_support/test/quic_test_server.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
11 #include "base/files/file_util.h" 11 #include "base/files/file_util.h"
12 #include "base/message_loop/message_loop.h"
12 #include "base/path_service.h" 13 #include "base/path_service.h"
13 #include "base/strings/stringprintf.h" 14 #include "base/strings/stringprintf.h"
14 #include "base/synchronization/waitable_event.h" 15 #include "base/synchronization/waitable_event.h"
15 #include "base/threading/thread.h" 16 #include "base/threading/thread.h"
16 #include "net/base/ip_address.h" 17 #include "net/base/ip_address.h"
17 #include "net/base/ip_endpoint.h" 18 #include "net/base/ip_endpoint.h"
18 #include "net/quic/chromium/crypto/proof_source_chromium.h" 19 #include "net/quic/chromium/crypto/proof_source_chromium.h"
19 #include "net/spdy/core/spdy_header_block.h" 20 #include "net/spdy/core/spdy_header_block.h"
20 #include "net/test/test_data_directory.h" 21 #include "net/test/test_data_directory.h"
21 #include "net/tools/quic/quic_http_response_cache.h" 22 #include "net/tools/quic/quic_http_response_cache.h"
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 server_stopped_event.Wait(); 143 server_stopped_event.Wait();
143 delete g_quic_server_thread; 144 delete g_quic_server_thread;
144 g_quic_server_thread = nullptr; 145 g_quic_server_thread = nullptr;
145 } 146 }
146 147
147 int GetQuicTestServerPort() { 148 int GetQuicTestServerPort() {
148 return g_quic_server_port; 149 return g_quic_server_port;
149 } 150 }
150 151
151 } // namespace grpc_support 152 } // namespace grpc_support
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698