diff options
author | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-25 13:02:15 +0000 |
---|---|---|
committer | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-25 13:02:15 +0000 |
commit | 54724e25da59d2176ad7631adc8ea5caecf11e18 (patch) | |
tree | 10940ec7e1b0a7379979e0892b776d3f66d0bd9e /content | |
parent | e0731d7cb5c16e970cd3c83f3b6c59100a1c793d (diff) | |
download | chromium_src-54724e25da59d2176ad7631adc8ea5caecf11e18.zip chromium_src-54724e25da59d2176ad7631adc8ea5caecf11e18.tar.gz chromium_src-54724e25da59d2176ad7631adc8ea5caecf11e18.tar.bz2 |
Update include paths in miscellaneous content/ directories for base/process changes.
BUG=242290
TBR=avi@chromium.org
Review URL: https://codereview.chromium.org/20114003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@213619 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/app/content_main_runner.cc | 4 | ||||
-rw-r--r-- | content/child/child_process.cc | 2 | ||||
-rw-r--r-- | content/child/child_thread.cc | 4 | ||||
-rw-r--r-- | content/child/fileapi/file_system_dispatcher.cc | 2 | ||||
-rw-r--r-- | content/child/fileapi/file_system_dispatcher.h | 2 | ||||
-rw-r--r-- | content/child/npapi/np_channel_base.h | 2 | ||||
-rw-r--r-- | content/child/npapi/webplugin_delegate_impl.cc | 2 | ||||
-rw-r--r-- | content/child/resource_dispatcher_unittest.cc | 4 | ||||
-rw-r--r-- | content/gpu/gpu_watchdog_thread.cc | 3 | ||||
-rw-r--r-- | content/plugin/plugin_channel.cc | 2 | ||||
-rw-r--r-- | content/plugin/plugin_channel.h | 2 | ||||
-rw-r--r-- | content/plugin/plugin_thread.cc | 3 | ||||
-rw-r--r-- | content/port/browser/render_widget_host_view_port.h | 2 | ||||
-rw-r--r-- | content/ppapi_plugin/ppapi_thread.cc | 1 | ||||
-rw-r--r-- | content/ppapi_plugin/ppapi_thread.h | 2 | ||||
-rw-r--r-- | content/shell/webkit_test_controller.cc | 1 | ||||
-rw-r--r-- | content/zygote/zygote_linux.cc | 2 | ||||
-rw-r--r-- | content/zygote/zygote_linux.h | 2 | ||||
-rw-r--r-- | content/zygote/zygote_main_linux.cc | 1 |
19 files changed, 21 insertions, 22 deletions
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc index d736a28..a91d6d3 100644 --- a/content/app/content_main_runner.cc +++ b/content/app/content_main_runner.cc @@ -18,7 +18,9 @@ #include "base/memory/scoped_ptr.h" #include "base/metrics/stats_table.h" #include "base/path_service.h" -#include "base/process_util.h" +#include "base/process/launch.h" +#include "base/process/memory.h" +#include "base/process/process_handle.h" #include "base/profiler/alternate_timer.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" diff --git a/content/child/child_process.cc b/content/child/child_process.cc index 68eef19..837ab02 100644 --- a/content/child/child_process.cc +++ b/content/child/child_process.cc @@ -11,7 +11,7 @@ #include "base/lazy_instance.h" #include "base/message_loop/message_loop.h" #include "base/metrics/statistics_recorder.h" -#include "base/process_util.h" +#include "base/process/process_handle.h" #include "base/strings/string_number_conversions.h" #include "base/strings/utf_string_conversions.h" #include "base/threading/thread.h" diff --git a/content/child/child_thread.cc b/content/child/child_thread.cc index 16bfae2..eefa4c5 100644 --- a/content/child/child_thread.cc +++ b/content/child/child_thread.cc @@ -9,8 +9,8 @@ #include "base/command_line.h" #include "base/lazy_instance.h" #include "base/message_loop/message_loop.h" -#include "base/process.h" -#include "base/process_util.h" +#include "base/process/kill.h" +#include "base/process/process_handle.h" #include "base/strings/string_util.h" #include "base/threading/thread_local.h" #include "base/tracked_objects.h" diff --git a/content/child/fileapi/file_system_dispatcher.cc b/content/child/fileapi/file_system_dispatcher.cc index 5c7d7c9..f2ba527 100644 --- a/content/child/fileapi/file_system_dispatcher.cc +++ b/content/child/fileapi/file_system_dispatcher.cc @@ -6,7 +6,7 @@ #include "base/callback.h" #include "base/file_util.h" -#include "base/process.h" +#include "base/process/process.h" #include "content/child/child_thread.h" #include "content/common/fileapi/file_system_messages.h" diff --git a/content/child/fileapi/file_system_dispatcher.h b/content/child/fileapi/file_system_dispatcher.h index a8fc624..4a8ced4 100644 --- a/content/child/fileapi/file_system_dispatcher.h +++ b/content/child/fileapi/file_system_dispatcher.h @@ -11,7 +11,7 @@ #include "base/basictypes.h" #include "base/callback_forward.h" #include "base/id_map.h" -#include "base/process.h" +#include "base/process/process.h" #include "ipc/ipc_listener.h" #include "ipc/ipc_platform_file.h" #include "webkit/common/fileapi/file_system_types.h" diff --git a/content/child/npapi/np_channel_base.h b/content/child/npapi/np_channel_base.h index f0a9466..4b5a369 100644 --- a/content/child/npapi/np_channel_base.h +++ b/content/child/npapi/np_channel_base.h @@ -11,7 +11,7 @@ #include "base/containers/hash_tables.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" -#include "base/process.h" +#include "base/process/process.h" #include "content/child/npapi/npobject_base.h" #include "content/common/message_router.h" #include "ipc/ipc_channel_handle.h" diff --git a/content/child/npapi/webplugin_delegate_impl.cc b/content/child/npapi/webplugin_delegate_impl.cc index f05d59d..b7334aa 100644 --- a/content/child/npapi/webplugin_delegate_impl.cc +++ b/content/child/npapi/webplugin_delegate_impl.cc @@ -9,7 +9,7 @@ #include "base/memory/scoped_ptr.h" #include "base/message_loop/message_loop.h" -#include "base/process_util.h" +#include "base/process/process_handle.h" #include "base/strings/string_util.h" #include "content/child/npapi/plugin_instance.h" #include "content/child/npapi/plugin_lib.h" diff --git a/content/child/resource_dispatcher_unittest.cc b/content/child/resource_dispatcher_unittest.cc index 2959c08..6b5eb40 100644 --- a/content/child/resource_dispatcher_unittest.cc +++ b/content/child/resource_dispatcher_unittest.cc @@ -7,8 +7,8 @@ #include "base/memory/scoped_ptr.h" #include "base/message_loop/message_loop.h" -#include "base/process.h" -#include "base/process_util.h" +#include "base/process/process.h" +#include "base/process/process_handle.h" #include "content/child/request_extra_data.h" #include "content/child/resource_dispatcher.h" #include "content/common/resource_messages.h" diff --git a/content/gpu/gpu_watchdog_thread.cc b/content/gpu/gpu_watchdog_thread.cc index 09e710e..e823edd 100644 --- a/content/gpu/gpu_watchdog_thread.cc +++ b/content/gpu/gpu_watchdog_thread.cc @@ -12,8 +12,7 @@ #include "base/bind_helpers.h" #include "base/command_line.h" #include "base/compiler_specific.h" -#include "base/process_util.h" -#include "base/process.h" +#include "base/process/process.h" #include "build/build_config.h" #include "content/public/common/content_switches.h" #include "content/public/common/result_codes.h" diff --git a/content/plugin/plugin_channel.cc b/content/plugin/plugin_channel.cc index 0556f82..31cba22 100644 --- a/content/plugin/plugin_channel.cc +++ b/content/plugin/plugin_channel.cc @@ -6,7 +6,7 @@ #include "base/bind.h" #include "base/command_line.h" -#include "base/process_util.h" +#include "base/process/process_handle.h" #include "base/strings/string_util.h" #include "base/synchronization/lock.h" #include "base/synchronization/waitable_event.h" diff --git a/content/plugin/plugin_channel.h b/content/plugin/plugin_channel.h index a5844e3..8af63b9 100644 --- a/content/plugin/plugin_channel.h +++ b/content/plugin/plugin_channel.h @@ -8,7 +8,7 @@ #include <vector> #include "base/memory/ref_counted.h" #include "base/memory/scoped_handle.h" -#include "base/process.h" +#include "base/process/process.h" #include "build/build_config.h" #include "content/child/npapi/np_channel_base.h" #include "content/plugin/webplugin_delegate_stub.h" diff --git a/content/plugin/plugin_thread.cc b/content/plugin/plugin_thread.cc index 5faeb74..e6b477f 100644 --- a/content/plugin/plugin_thread.cc +++ b/content/plugin/plugin_thread.cc @@ -18,7 +18,8 @@ #include "base/bind.h" #include "base/command_line.h" #include "base/lazy_instance.h" -#include "base/process_util.h" +#include "base/process/kill.h" +#include "base/process/process_handle.h" #include "base/threading/thread_local.h" #include "content/child/child_process.h" #include "content/child/npapi/npobject_util.h" diff --git a/content/port/browser/render_widget_host_view_port.h b/content/port/browser/render_widget_host_view_port.h index 7cccbb1..a6d3164 100644 --- a/content/port/browser/render_widget_host_view_port.h +++ b/content/port/browser/render_widget_host_view_port.h @@ -6,7 +6,7 @@ #define CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_PORT_H_ #include "base/callback.h" -#include "base/process_util.h" +#include "base/process/kill.h" #include "base/strings/string16.h" #include "cc/output/compositor_frame.h" #include "content/common/content_export.h" diff --git a/content/ppapi_plugin/ppapi_thread.cc b/content/ppapi_plugin/ppapi_thread.cc index c228bf6..43e739cf 100644 --- a/content/ppapi_plugin/ppapi_thread.cc +++ b/content/ppapi_plugin/ppapi_thread.cc @@ -10,7 +10,6 @@ #include "base/debug/crash_logging.h" #include "base/logging.h" #include "base/metrics/histogram.h" -#include "base/process_util.h" #include "base/rand_util.h" #include "base/strings/stringprintf.h" #include "base/strings/utf_string_conversions.h" diff --git a/content/ppapi_plugin/ppapi_thread.h b/content/ppapi_plugin/ppapi_thread.h index 7726a98..24037ef 100644 --- a/content/ppapi_plugin/ppapi_thread.h +++ b/content/ppapi_plugin/ppapi_thread.h @@ -11,7 +11,7 @@ #include "base/basictypes.h" #include "base/compiler_specific.h" #include "base/memory/scoped_ptr.h" -#include "base/process.h" +#include "base/process/process.h" #include "base/scoped_native_library.h" #include "build/build_config.h" #include "content/child/child_thread.h" diff --git a/content/shell/webkit_test_controller.cc b/content/shell/webkit_test_controller.cc index 851bceb..8189db2 100644 --- a/content/shell/webkit_test_controller.cc +++ b/content/shell/webkit_test_controller.cc @@ -9,7 +9,6 @@ #include "base/base64.h" #include "base/command_line.h" #include "base/message_loop/message_loop.h" -#include "base/process_util.h" #include "base/run_loop.h" #include "base/strings/string_number_conversions.h" #include "base/strings/stringprintf.h" diff --git a/content/zygote/zygote_linux.cc b/content/zygote/zygote_linux.cc index 8930022..abb52ae 100644 --- a/content/zygote/zygote_linux.cc +++ b/content/zygote/zygote_linux.cc @@ -19,7 +19,7 @@ #include "base/posix/eintr_wrapper.h" #include "base/posix/global_descriptors.h" #include "base/posix/unix_domain_socket_linux.h" -#include "base/process_util.h" +#include "base/process/kill.h" #include "content/common/sandbox_linux.h" #include "content/common/set_process_title.h" #include "content/common/zygote_commands_linux.h" diff --git a/content/zygote/zygote_linux.h b/content/zygote/zygote_linux.h index d9e515a..3b175ac 100644 --- a/content/zygote/zygote_linux.h +++ b/content/zygote/zygote_linux.h @@ -9,7 +9,7 @@ #include <vector> #include "base/containers/hash_tables.h" -#include "base/process.h" +#include "base/process/process.h" class Pickle; class PickleIterator; diff --git a/content/zygote/zygote_main_linux.cc b/content/zygote/zygote_main_linux.cc index 0df288f..1f0e9f5 100644 --- a/content/zygote/zygote_main_linux.cc +++ b/content/zygote/zygote_main_linux.cc @@ -24,7 +24,6 @@ #include "base/pickle.h" #include "base/posix/eintr_wrapper.h" #include "base/posix/unix_domain_socket_linux.h" -#include "base/process_util.h" #include "base/rand_util.h" #include "base/sys_info.h" #include "build/build_config.h" |