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

Side by Side Diff: net/test/test_server.cc

Issue 3068004: base/ header cleanup. Forward declaration instead of including. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: chrome_launcher_unittest.cc Created 10 years, 4 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 | « media/tools/wav_ola_test/wav_ola_test.cc ('k') | net/tools/tld_cleanup/tld_cleanup.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/test_server.h" 5 #include "net/test/test_server.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "build/build_config.h" 11 #include "build/build_config.h"
12 12
13 #if defined(OS_WIN) 13 #if defined(OS_WIN)
14 #include <windows.h> 14 #include <windows.h>
15 #include <wincrypt.h> 15 #include <wincrypt.h>
16 #elif defined(OS_MACOSX) 16 #elif defined(OS_MACOSX)
17 #include "net/base/x509_certificate.h" 17 #include "net/base/x509_certificate.h"
18 #endif 18 #endif
19 19
20 #include "base/file_util.h" 20 #include "base/file_util.h"
21 #include "base/leak_annotations.h" 21 #include "base/leak_annotations.h"
22 #include "base/logging.h" 22 #include "base/logging.h"
23 #include "base/path_service.h" 23 #include "base/path_service.h"
24 #include "base/string_util.h"
24 #include "base/utf_string_conversions.h" 25 #include "base/utf_string_conversions.h"
25 #include "net/base/cert_test_util.h" 26 #include "net/base/cert_test_util.h"
26 #include "net/base/host_resolver.h" 27 #include "net/base/host_resolver.h"
27 #include "net/base/test_completion_callback.h" 28 #include "net/base/test_completion_callback.h"
28 #include "net/socket/tcp_client_socket.h" 29 #include "net/socket/tcp_client_socket.h"
29 #include "net/socket/tcp_pinger.h" 30 #include "net/socket/tcp_pinger.h"
30 #include "testing/platform_test.h" 31 #include "testing/platform_test.h"
31 32
32 #if defined(OS_WIN) 33 #if defined(OS_WIN)
33 #pragma comment(lib, "crypt32.lib") 34 #pragma comment(lib, "crypt32.lib")
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 process_info.hProcess)) { 399 process_info.hProcess)) {
399 LOG(ERROR) << "Could not AssignProcessToObject."; 400 LOG(ERROR) << "Could not AssignProcessToObject.";
400 return false; 401 return false;
401 } 402 }
402 } 403 }
403 return true; 404 return true;
404 } 405 }
405 #endif 406 #endif
406 407
407 } // namespace net 408 } // namespace net
OLDNEW
« no previous file with comments | « media/tools/wav_ola_test/wav_ola_test.cc ('k') | net/tools/tld_cleanup/tld_cleanup.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698