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 "chrome/test/base/layout_test_http_server.h" | 5 #include "content/test/layout_test_http_server.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/process_util.h" | 10 #include "base/process_util.h" |
11 #include "base/string_number_conversions.h" | 11 #include "base/string_number_conversions.h" |
12 #include "content/public/common/content_paths.h" | 12 #include "content/public/common/content_paths.h" |
13 #include "net/test/python_utils.h" | 13 #include "net/test/python_utils.h" |
14 | 14 |
15 #if defined(OS_WIN) | 15 #if defined(OS_WIN) |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 running_ = !stopped; | 125 running_ = !stopped; |
126 | 126 |
127 #if defined(OS_WIN) | 127 #if defined(OS_WIN) |
128 // Close the job object handle now. This should clean up | 128 // Close the job object handle now. This should clean up |
129 // any orphaned processes. | 129 // any orphaned processes. |
130 job_handle_.Close(); | 130 job_handle_.Close(); |
131 #endif | 131 #endif |
132 | 132 |
133 return stopped; | 133 return stopped; |
134 } | 134 } |
OLD | NEW |