diff options
author | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-23 14:08:52 +0000 |
---|---|---|
committer | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-23 14:08:52 +0000 |
commit | 66c5314f8d6819d696f441b00d3a0b8bd4267b70 (patch) | |
tree | b2ffe5e9efeb628d6148eeb289203dc01cb737bf /net/test/spawned_test_server | |
parent | 5d329477a6fb5ec32e94e1a02e4a4d0ffcdde7c4 (diff) | |
download | chromium_src-66c5314f8d6819d696f441b00d3a0b8bd4267b70.zip chromium_src-66c5314f8d6819d696f441b00d3a0b8bd4267b70.tar.gz chromium_src-66c5314f8d6819d696f441b00d3a0b8bd4267b70.tar.bz2 |
Update include paths in net for base/process changes.
BUG=242290
R=cbentzel@chromium.org
Review URL: https://codereview.chromium.org/20004003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@213094 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/test/spawned_test_server')
4 files changed, 6 insertions, 4 deletions
diff --git a/net/test/spawned_test_server/local_test_server.cc b/net/test/spawned_test_server/local_test_server.cc index 1531708..bf1b059 100644 --- a/net/test/spawned_test_server/local_test_server.cc +++ b/net/test/spawned_test_server/local_test_server.cc @@ -8,7 +8,7 @@ #include "base/json/json_reader.h" #include "base/logging.h" #include "base/path_service.h" -#include "base/process_util.h" +#include "base/process/kill.h" #include "base/strings/string_number_conversions.h" #include "base/values.h" #include "net/base/host_port_pair.h" diff --git a/net/test/spawned_test_server/local_test_server.h b/net/test/spawned_test_server/local_test_server.h index 8f79b8f..cfd2eb3 100644 --- a/net/test/spawned_test_server/local_test_server.h +++ b/net/test/spawned_test_server/local_test_server.h @@ -8,7 +8,7 @@ #include <string> #include "base/file_util.h" -#include "base/process.h" +#include "base/process/process_handle.h" #include "net/test/spawned_test_server/base_test_server.h" #if defined(OS_WIN) diff --git a/net/test/spawned_test_server/local_test_server_posix.cc b/net/test/spawned_test_server/local_test_server_posix.cc index ac98c3c..10c2d0f 100644 --- a/net/test/spawned_test_server/local_test_server_posix.cc +++ b/net/test/spawned_test_server/local_test_server_posix.cc @@ -11,7 +11,9 @@ #include "base/command_line.h" #include "base/file_util.h" #include "base/logging.h" -#include "base/process_util.h" +#include "base/process/kill.h" +#include "base/process/launch.h" +#include "base/process/process_iterator.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" #include "base/test/test_timeouts.h" diff --git a/net/test/spawned_test_server/local_test_server_win.cc b/net/test/spawned_test_server/local_test_server_win.cc index 2db8334..fd26483 100644 --- a/net/test/spawned_test_server/local_test_server_win.cc +++ b/net/test/spawned_test_server/local_test_server_win.cc @@ -13,7 +13,7 @@ #include "base/files/file_path.h" #include "base/message_loop/message_loop.h" #include "base/path_service.h" -#include "base/process_util.h" +#include "base/process/launch.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" |