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

Side by Side Diff: content/test/layout_test_http_server.cc

Issue 10820007: Move all the layout tests that ran under browser_tests to run under content_browsertests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 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 | Annotate | Revision Log
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 "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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698