diff options
author | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-23 21:20:54 +0000 |
---|---|---|
committer | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-23 21:20:54 +0000 |
commit | fa20e0076dcbdb2d3977dc175639e1d737998bf0 (patch) | |
tree | 03c1b30f16e335a7cb7b6682a190f1e2a9f8b3ae | |
parent | 96a758ef6e609594e3d4bd017b148a90908a0672 (diff) | |
download | chromium_src-fa20e0076dcbdb2d3977dc175639e1d737998bf0.zip chromium_src-fa20e0076dcbdb2d3977dc175639e1d737998bf0.tar.gz chromium_src-fa20e0076dcbdb2d3977dc175639e1d737998bf0.tar.bz2 |
Update include paths in content/browser for base/process changes.
BUG=242290
TBR=sky@chromium.org
Review URL: https://codereview.chromium.org/19495006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@213225 0039d316-1c4b-4281-b951-d872f2087c98
66 files changed, 40 insertions, 68 deletions
diff --git a/content/browser/android/child_process_launcher_android.h b/content/browser/android/child_process_launcher_android.h index e83e04e..b90ff23 100644 --- a/content/browser/android/child_process_launcher_android.h +++ b/content/browser/android/child_process_launcher_android.h @@ -10,7 +10,7 @@ #include "base/callback.h" #include "base/command_line.h" #include "base/platform_file.h" -#include "base/process.h" +#include "base/process/process.h" #include "content/public/browser/file_descriptor_info.h" namespace content { diff --git a/content/browser/android/content_view_core_impl.h b/content/browser/android/content_view_core_impl.h index 967f2af..4d78c9f 100644 --- a/content/browser/android/content_view_core_impl.h +++ b/content/browser/android/content_view_core_impl.h @@ -13,7 +13,7 @@ #include "base/compiler_specific.h" #include "base/i18n/rtl.h" #include "base/memory/scoped_ptr.h" -#include "base/process.h" +#include "base/process/process.h" #include "content/browser/renderer_host/render_widget_host_view_android.h" #include "content/browser/web_contents/web_contents_impl.h" #include "content/public/browser/android/content_view_core.h" diff --git a/content/browser/appcache/appcache_dispatcher_host.h b/content/browser/appcache/appcache_dispatcher_host.h index 5b1169e..29ed69e 100644 --- a/content/browser/appcache/appcache_dispatcher_host.h +++ b/content/browser/appcache/appcache_dispatcher_host.h @@ -9,7 +9,7 @@ #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" -#include "base/process.h" +#include "base/process/process.h" #include "content/browser/appcache/appcache_frontend_proxy.h" #include "content/public/browser/browser_message_filter.h" #include "webkit/browser/appcache/appcache_backend_impl.h" diff --git a/content/browser/browser_child_process_host_impl.cc b/content/browser/browser_child_process_host_impl.cc index a915228..6155776 100644 --- a/content/browser/browser_child_process_host_impl.cc +++ b/content/browser/browser_child_process_host_impl.cc @@ -12,7 +12,6 @@ #include "base/logging.h" #include "base/metrics/histogram.h" #include "base/path_service.h" -#include "base/process_util.h" #include "base/stl_util.h" #include "base/strings/string_util.h" #include "base/synchronization/waitable_event.h" diff --git a/content/browser/browser_child_process_host_impl.h b/content/browser/browser_child_process_host_impl.h index 9933ca3..e25b514 100644 --- a/content/browser/browser_child_process_host_impl.h +++ b/content/browser/browser_child_process_host_impl.h @@ -9,7 +9,7 @@ #include "base/compiler_specific.h" #include "base/memory/scoped_ptr.h" -#include "base/process.h" +#include "base/process/process.h" #include "base/synchronization/waitable_event_watcher.h" #include "content/browser/child_process_launcher.h" #include "content/public/browser/browser_child_process_host.h" diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc index d7553cc..241b7e5 100644 --- a/content/browser/browser_main_loop.cc +++ b/content/browser/browser_main_loop.cc @@ -13,6 +13,7 @@ #include "base/metrics/histogram.h" #include "base/pending_task.h" #include "base/power_monitor/power_monitor.h" +#include "base/process/process_metrics.h" #include "base/run_loop.h" #include "base/strings/string_number_conversions.h" #include "base/system_monitor/system_monitor.h" @@ -91,7 +92,6 @@ #if defined(OS_POSIX) && !defined(OS_MACOSX) #include <sys/stat.h> -#include "base/process_util.h" #include "content/browser/renderer_host/render_sandbox_host_linux.h" #include "content/browser/zygote_host/zygote_host_impl_linux.h" #endif diff --git a/content/browser/browser_plugin/test_browser_plugin_guest.h b/content/browser/browser_plugin/test_browser_plugin_guest.h index aa3aa3b..7fccb00 100644 --- a/content/browser/browser_plugin/test_browser_plugin_guest.h +++ b/content/browser/browser_plugin/test_browser_plugin_guest.h @@ -6,7 +6,6 @@ #define CONTENT_BROWSER_BROWSER_PLUGIN_TEST_BROWSER_PLUGIN_GUEST_H_ #include "base/compiler_specific.h" -#include "base/process_util.h" #include "content/browser/browser_plugin/browser_plugin_guest.h" #include "content/public/test/test_utils.h" #include "ui/gfx/size.h" diff --git a/content/browser/child_process_launcher.cc b/content/browser/child_process_launcher.cc index e497762..ce0f626 100644 --- a/content/browser/child_process_launcher.cc +++ b/content/browser/child_process_launcher.cc @@ -12,7 +12,6 @@ #include "base/logging.h" #include "base/memory/scoped_ptr.h" #include "base/metrics/histogram.h" -#include "base/process_util.h" #include "base/synchronization/lock.h" #include "base/threading/thread.h" #include "content/public/browser/browser_thread.h" diff --git a/content/browser/child_process_launcher.h b/content/browser/child_process_launcher.h index f1c8f0d..5a6e1f9 100644 --- a/content/browser/child_process_launcher.h +++ b/content/browser/child_process_launcher.h @@ -7,7 +7,8 @@ #include "base/basictypes.h" #include "base/memory/ref_counted.h" -#include "base/process_util.h" +#include "base/process/kill.h" +#include "base/process/launch.h" #include "content/common/content_export.h" class CommandLine; diff --git a/content/browser/child_process_security_policy_browsertest.cc b/content/browser/child_process_security_policy_browsertest.cc index e475c02..db27a533 100644 --- a/content/browser/child_process_security_policy_browsertest.cc +++ b/content/browser/child_process_security_policy_browsertest.cc @@ -6,7 +6,6 @@ #include "base/basictypes.h" #include "base/files/file_path.h" -#include "base/process_util.h" #include "content/browser/child_process_security_policy_impl.h" #include "content/browser/web_contents/web_contents_impl.h" #include "content/public/browser/render_process_host.h" diff --git a/content/browser/device_orientation/data_fetcher_impl_android_unittest.cc b/content/browser/device_orientation/data_fetcher_impl_android_unittest.cc index 506dca0..85d5184 100644 --- a/content/browser/device_orientation/data_fetcher_impl_android_unittest.cc +++ b/content/browser/device_orientation/data_fetcher_impl_android_unittest.cc @@ -7,7 +7,6 @@ #include "base/android/jni_android.h" #include "base/memory/scoped_ptr.h" #include "base/memory/weak_ptr.h" -#include "base/process_util.h" #include "testing/gtest/include/gtest/gtest.h" namespace content { diff --git a/content/browser/download/mhtml_generation_manager.h b/content/browser/download/mhtml_generation_manager.h index ffdb95b..efc6b46 100644 --- a/content/browser/download/mhtml_generation_manager.h +++ b/content/browser/download/mhtml_generation_manager.h @@ -9,7 +9,7 @@ #include "base/memory/singleton.h" #include "base/platform_file.h" -#include "base/process.h" +#include "base/process/process.h" #include "ipc/ipc_platform_file.h" namespace base { diff --git a/content/browser/gamepad/gamepad_provider_unittest.cc b/content/browser/gamepad/gamepad_provider_unittest.cc index 12d8845..0e5785c 100644 --- a/content/browser/gamepad/gamepad_provider_unittest.cc +++ b/content/browser/gamepad/gamepad_provider_unittest.cc @@ -4,7 +4,6 @@ #include "base/memory/scoped_ptr.h" #include "base/memory/weak_ptr.h" -#include "base/process_util.h" #include "content/browser/gamepad/gamepad_data_fetcher.h" #include "content/browser/gamepad/gamepad_provider.h" #include "content/browser/gamepad/gamepad_test_helpers.h" diff --git a/content/browser/gpu/browser_gpu_channel_host_factory.h b/content/browser/gpu/browser_gpu_channel_host_factory.h index 8baf263..fb34b64 100644 --- a/content/browser/gpu/browser_gpu_channel_host_factory.h +++ b/content/browser/gpu/browser_gpu_channel_host_factory.h @@ -7,7 +7,7 @@ #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" -#include "base/process.h" +#include "base/process/process.h" #include "base/synchronization/waitable_event.h" #include "content/common/gpu/client/gpu_channel_host.h" #include "ipc/ipc_channel_handle.h" diff --git a/content/browser/gpu/gpu_data_manager_impl.h b/content/browser/gpu/gpu_data_manager_impl.h index ede4bb7..497d3bd 100644 --- a/content/browser/gpu/gpu_data_manager_impl.h +++ b/content/browser/gpu/gpu_data_manager_impl.h @@ -13,7 +13,7 @@ #include "base/logging.h" #include "base/memory/scoped_ptr.h" #include "base/memory/singleton.h" -#include "base/process_util.h" +#include "base/process/kill.h" #include "base/synchronization/lock.h" #include "base/time/time.h" #include "base/values.h" diff --git a/content/browser/gpu/gpu_process_host.cc b/content/browser/gpu/gpu_process_host.cc index 6ab1d3c..c7b4666 100644 --- a/content/browser/gpu/gpu_process_host.cc +++ b/content/browser/gpu/gpu_process_host.cc @@ -13,7 +13,6 @@ #include "base/logging.h" #include "base/memory/ref_counted.h" #include "base/metrics/histogram.h" -#include "base/process_util.h" #include "base/sha1.h" #include "base/threading/thread.h" #include "content/browser/browser_child_process_host_impl.h" diff --git a/content/browser/gpu/gpu_process_host_ui_shim.cc b/content/browser/gpu/gpu_process_host_ui_shim.cc index 2d0c425..5081042 100644 --- a/content/browser/gpu/gpu_process_host_ui_shim.cc +++ b/content/browser/gpu/gpu_process_host_ui_shim.cc @@ -11,7 +11,6 @@ #include "base/debug/trace_event.h" #include "base/id_map.h" #include "base/lazy_instance.h" -#include "base/process_util.h" #include "base/strings/string_number_conversions.h" #include "content/browser/gpu/gpu_data_manager_impl.h" #include "content/browser/gpu/gpu_process_host.h" diff --git a/content/browser/histogram_message_filter.cc b/content/browser/histogram_message_filter.cc index 7522190..d46b96b 100644 --- a/content/browser/histogram_message_filter.cc +++ b/content/browser/histogram_message_filter.cc @@ -7,7 +7,6 @@ #include "base/command_line.h" #include "base/metrics/histogram.h" #include "base/metrics/statistics_recorder.h" -#include "base/process_util.h" #include "content/browser/histogram_controller.h" #include "content/browser/tcmalloc_internals_request_job.h" #include "content/common/child_process_messages.h" diff --git a/content/browser/indexed_db/indexed_db_browsertest.cc b/content/browser/indexed_db/indexed_db_browsertest.cc index 108954e..ab010cb 100644 --- a/content/browser/indexed_db/indexed_db_browsertest.cc +++ b/content/browser/indexed_db/indexed_db_browsertest.cc @@ -8,7 +8,6 @@ #include "base/files/file_path.h" #include "base/memory/ref_counted.h" #include "base/message_loop/message_loop.h" -#include "base/process_util.h" #include "base/strings/utf_string_conversions.h" #include "base/test/thread_test_helper.h" #include "content/browser/browser_main_loop.h" diff --git a/content/browser/indexed_db/indexed_db_dispatcher_host.cc b/content/browser/indexed_db/indexed_db_dispatcher_host.cc index f833c22..2b4c64f 100644 --- a/content/browser/indexed_db/indexed_db_dispatcher_host.cc +++ b/content/browser/indexed_db/indexed_db_dispatcher_host.cc @@ -7,8 +7,7 @@ #include "base/bind.h" #include "base/command_line.h" #include "base/files/file_path.h" -#include "base/process.h" -#include "base/process_util.h" +#include "base/process/process.h" #include "base/strings/utf_string_conversions.h" #include "content/browser/indexed_db/indexed_db_callbacks.h" #include "content/browser/indexed_db/indexed_db_connection.h" diff --git a/content/browser/loader/async_resource_handler.cc b/content/browser/loader/async_resource_handler.cc index 151924a..02e5552 100644 --- a/content/browser/loader/async_resource_handler.cc +++ b/content/browser/loader/async_resource_handler.cc @@ -13,7 +13,6 @@ #include "base/logging.h" #include "base/memory/shared_memory.h" #include "base/metrics/histogram.h" -#include "base/process_util.h" #include "base/strings/string_number_conversions.h" #include "content/browser/devtools/devtools_netlog_observer.h" #include "content/browser/host_zoom_map_impl.h" diff --git a/content/browser/loader/resource_dispatcher_host_unittest.cc b/content/browser/loader/resource_dispatcher_host_unittest.cc index 8fabb52..f09798f 100644 --- a/content/browser/loader/resource_dispatcher_host_unittest.cc +++ b/content/browser/loader/resource_dispatcher_host_unittest.cc @@ -9,7 +9,6 @@ #include "base/memory/scoped_vector.h" #include "base/message_loop/message_loop.h" #include "base/pickle.h" -#include "base/process_util.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_split.h" #include "content/browser/browser_thread_impl.h" diff --git a/content/browser/mach_broker_mac.h b/content/browser/mach_broker_mac.h index e38e86f..51038bf 100644 --- a/content/browser/mach_broker_mac.h +++ b/content/browser/mach_broker_mac.h @@ -11,8 +11,8 @@ #include <mach/mach.h> #include "base/memory/singleton.h" -#include "base/process.h" -#include "base/process_util.h" +#include "base/process/process_handle.h" +#include "base/process/process_metrics.h" #include "base/synchronization/lock.h" #include "content/public/browser/browser_child_process_observer.h" #include "content/public/browser/notification_observer.h" diff --git a/content/browser/media/webrtc_internals.h b/content/browser/media/webrtc_internals.h index c5b110e..58e9a9f 100644 --- a/content/browser/media/webrtc_internals.h +++ b/content/browser/media/webrtc_internals.h @@ -7,7 +7,7 @@ #include "base/memory/singleton.h" #include "base/observer_list.h" -#include "base/process.h" +#include "base/process/process.h" #include "base/values.h" #include "content/common/content_export.h" #include "content/public/browser/browser_child_process_observer.h" diff --git a/content/browser/plugin_process_host_mac.cc b/content/browser/plugin_process_host_mac.cc index f283ecd..9350300 100644 --- a/content/browser/plugin_process_host_mac.cc +++ b/content/browser/plugin_process_host_mac.cc @@ -11,7 +11,6 @@ #include "base/bind.h" #include "base/logging.h" #include "base/mac/mac_util.h" -#include "base/process_util.h" #include "content/browser/browser_child_process_host_impl.h" #include "content/browser/plugin_process_host.h" #include "content/public/browser/browser_thread.h" diff --git a/content/browser/ppapi_plugin_process_host.cc b/content/browser/ppapi_plugin_process_host.cc index d080e9e..b44d1e6 100644 --- a/content/browser/ppapi_plugin_process_host.cc +++ b/content/browser/ppapi_plugin_process_host.cc @@ -10,7 +10,6 @@ #include "base/command_line.h" #include "base/files/file_path.h" #include "base/metrics/field_trial.h" -#include "base/process_util.h" #include "base/strings/utf_string_conversions.h" #include "content/browser/browser_child_process_host_impl.h" #include "content/browser/plugin_service_impl.h" diff --git a/content/browser/ppapi_plugin_process_host.h b/content/browser/ppapi_plugin_process_host.h index f516b17..78d6bd6 100644 --- a/content/browser/ppapi_plugin_process_host.h +++ b/content/browser/ppapi_plugin_process_host.h @@ -12,7 +12,7 @@ #include "base/files/file_path.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" -#include "base/process.h" +#include "base/process/process.h" #include "base/strings/string16.h" #include "content/browser/renderer_host/pepper/browser_ppapi_host_impl.h" #include "content/browser/renderer_host/pepper/pepper_message_filter.h" diff --git a/content/browser/profiler_controller_impl.h b/content/browser/profiler_controller_impl.h index 1efbafa..34c76ec 100644 --- a/content/browser/profiler_controller_impl.h +++ b/content/browser/profiler_controller_impl.h @@ -6,7 +6,7 @@ #define CONTENT_BROWSER_PROFILER_CONTROLLER_IMPL_H_ #include "base/memory/singleton.h" -#include "base/process.h" +#include "base/process/process.h" #include "content/common/content_export.h" #include "content/public/browser/profiler_controller.h" #include "content/public/common/process_type.h" diff --git a/content/browser/profiler_message_filter.cc b/content/browser/profiler_message_filter.cc index 9eeaa03..cb30f25 100644 --- a/content/browser/profiler_message_filter.cc +++ b/content/browser/profiler_message_filter.cc @@ -5,7 +5,6 @@ #include "content/browser/profiler_message_filter.h" #include "base/tracked_objects.h" -#include "base/process_util.h" #include "content/browser/profiler_controller_impl.h" #include "content/browser/tcmalloc_internals_request_job.h" #include "content/common/child_process_messages.h" diff --git a/content/browser/renderer_host/backing_store_manager.h b/content/browser/renderer_host/backing_store_manager.h index 6f27336..8611188 100644 --- a/content/browser/renderer_host/backing_store_manager.h +++ b/content/browser/renderer_host/backing_store_manager.h @@ -9,7 +9,7 @@ #include "base/basictypes.h" #include "base/callback_forward.h" -#include "base/process.h" +#include "base/process/process.h" #include "ui/gfx/rect.h" #include "ui/gfx/size.h" #include "ui/surface/transport_dib.h" diff --git a/content/browser/renderer_host/gpu_message_filter.cc b/content/browser/renderer_host/gpu_message_filter.cc index c396a7f..8ab2280 100644 --- a/content/browser/renderer_host/gpu_message_filter.cc +++ b/content/browser/renderer_host/gpu_message_filter.cc @@ -10,7 +10,6 @@ #include "base/bind.h" #include "base/command_line.h" -#include "base/process_util.h" #include "content/browser/gpu/browser_gpu_channel_host_factory.h" #include "content/browser/gpu/gpu_process_host.h" #include "content/browser/gpu/gpu_surface_tracker.h" diff --git a/content/browser/renderer_host/media/audio_input_renderer_host.cc b/content/browser/renderer_host/media/audio_input_renderer_host.cc index 6f07227..4a2f731 100644 --- a/content/browser/renderer_host/media/audio_input_renderer_host.cc +++ b/content/browser/renderer_host/media/audio_input_renderer_host.cc @@ -7,7 +7,7 @@ #include "base/bind.h" #include "base/memory/shared_memory.h" #include "base/metrics/histogram.h" -#include "base/process.h" +#include "base/process/process.h" #include "content/browser/renderer_host/media/audio_input_device_manager.h" #include "content/browser/renderer_host/media/audio_input_sync_writer.h" #include "content/browser/renderer_host/media/media_stream_manager.h" diff --git a/content/browser/renderer_host/media/audio_input_renderer_host.h b/content/browser/renderer_host/media/audio_input_renderer_host.h index a86e362..d16ebfa 100644 --- a/content/browser/renderer_host/media/audio_input_renderer_host.h +++ b/content/browser/renderer_host/media/audio_input_renderer_host.h @@ -32,7 +32,7 @@ #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "base/memory/shared_memory.h" -#include "base/process.h" +#include "base/process/process.h" #include "base/sequenced_task_runner_helpers.h" #include "content/common/media/audio_messages.h" #include "content/public/browser/browser_message_filter.h" diff --git a/content/browser/renderer_host/media/audio_input_sync_writer.cc b/content/browser/renderer_host/media/audio_input_sync_writer.cc index aab0961..572abf3 100644 --- a/content/browser/renderer_host/media/audio_input_sync_writer.cc +++ b/content/browser/renderer_host/media/audio_input_sync_writer.cc @@ -7,7 +7,6 @@ #include <algorithm> #include "base/memory/shared_memory.h" -#include "base/process_util.h" namespace content { diff --git a/content/browser/renderer_host/media/audio_input_sync_writer.h b/content/browser/renderer_host/media/audio_input_sync_writer.h index 868219b..4cfe9e3 100644 --- a/content/browser/renderer_host/media/audio_input_sync_writer.h +++ b/content/browser/renderer_host/media/audio_input_sync_writer.h @@ -6,7 +6,7 @@ #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_INPUT_SYNC_WRITER_H_ #include "base/file_descriptor_posix.h" -#include "base/process.h" +#include "base/process/process.h" #include "base/sync_socket.h" #include "media/audio/audio_input_controller.h" diff --git a/content/browser/renderer_host/media/audio_renderer_host.cc b/content/browser/renderer_host/media/audio_renderer_host.cc index bf87d06..53f2eb2 100644 --- a/content/browser/renderer_host/media/audio_renderer_host.cc +++ b/content/browser/renderer_host/media/audio_renderer_host.cc @@ -9,7 +9,7 @@ #include "base/command_line.h" #include "base/memory/shared_memory.h" #include "base/metrics/histogram.h" -#include "base/process.h" +#include "base/process/process.h" #include "content/browser/browser_main_loop.h" #include "content/browser/media/media_internals.h" #include "content/browser/renderer_host/media/audio_input_device_manager.h" diff --git a/content/browser/renderer_host/media/audio_renderer_host.h b/content/browser/renderer_host/media/audio_renderer_host.h index 2bb597a..47dbee9 100644 --- a/content/browser/renderer_host/media/audio_renderer_host.h +++ b/content/browser/renderer_host/media/audio_renderer_host.h @@ -42,7 +42,7 @@ #include "base/gtest_prod_util.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" -#include "base/process.h" +#include "base/process/process.h" #include "base/sequenced_task_runner_helpers.h" #include "content/common/content_export.h" #include "content/public/browser/browser_message_filter.h" diff --git a/content/browser/renderer_host/media/audio_renderer_host_unittest.cc b/content/browser/renderer_host/media/audio_renderer_host_unittest.cc index ea8247d..42fecc0 100644 --- a/content/browser/renderer_host/media/audio_renderer_host_unittest.cc +++ b/content/browser/renderer_host/media/audio_renderer_host_unittest.cc @@ -6,7 +6,6 @@ #include "base/environment.h" #include "base/memory/scoped_ptr.h" #include "base/message_loop/message_loop.h" -#include "base/process_util.h" #include "base/sync_socket.h" #include "content/browser/browser_thread_impl.h" #include "content/browser/renderer_host/media/audio_input_device_manager.h" diff --git a/content/browser/renderer_host/media/audio_sync_reader.cc b/content/browser/renderer_host/media/audio_sync_reader.cc index b2ec0a1..7f2bf40 100644 --- a/content/browser/renderer_host/media/audio_sync_reader.cc +++ b/content/browser/renderer_host/media/audio_sync_reader.cc @@ -8,7 +8,6 @@ #include "base/memory/shared_memory.h" #include "base/metrics/histogram.h" -#include "base/process_util.h" #include "media/audio/audio_buffers_state.h" #include "media/audio/audio_parameters.h" #include "media/audio/shared_memory_util.h" diff --git a/content/browser/renderer_host/media/audio_sync_reader.h b/content/browser/renderer_host/media/audio_sync_reader.h index 87bf215..385e329 100644 --- a/content/browser/renderer_host/media/audio_sync_reader.h +++ b/content/browser/renderer_host/media/audio_sync_reader.h @@ -6,7 +6,7 @@ #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_AUDIO_SYNC_READER_H_ #include "base/file_descriptor_posix.h" -#include "base/process.h" +#include "base/process/process.h" #include "base/sync_socket.h" #include "base/synchronization/lock.h" #include "base/time/time.h" diff --git a/content/browser/renderer_host/media/midi_host.cc b/content/browser/renderer_host/media/midi_host.cc index 56f4099..116511f 100644 --- a/content/browser/renderer_host/media/midi_host.cc +++ b/content/browser/renderer_host/media/midi_host.cc @@ -7,7 +7,7 @@ #include "base/bind.h" #include "base/bind_helpers.h" #include "base/debug/trace_event.h" -#include "base/process.h" +#include "base/process/process.h" #include "content/browser/browser_main_loop.h" #include "content/browser/media/media_internals.h" #include "content/common/media/midi_messages.h" diff --git a/content/browser/renderer_host/media/peer_connection_tracker_host.cc b/content/browser/renderer_host/media/peer_connection_tracker_host.cc index 3919be7..b986055 100644 --- a/content/browser/renderer_host/media/peer_connection_tracker_host.cc +++ b/content/browser/renderer_host/media/peer_connection_tracker_host.cc @@ -3,7 +3,6 @@ // found in the LICENSE file. #include "content/browser/renderer_host/media/peer_connection_tracker_host.h" -#include "base/process_util.h" #include "content/browser/media/webrtc_internals.h" #include "content/common/media/peer_connection_tracker_messages.h" diff --git a/content/browser/renderer_host/media/video_capture_buffer_pool.h b/content/browser/renderer_host/media/video_capture_buffer_pool.h index 20df46f..6d96077 100644 --- a/content/browser/renderer_host/media/video_capture_buffer_pool.h +++ b/content/browser/renderer_host/media/video_capture_buffer_pool.h @@ -9,7 +9,7 @@ #include "base/memory/ref_counted.h" #include "base/memory/scoped_vector.h" #include "base/memory/shared_memory.h" -#include "base/process.h" +#include "base/process/process.h" #include "base/synchronization/lock.h" #include "content/common/content_export.h" #include "ui/gfx/size.h" diff --git a/content/browser/renderer_host/media/video_capture_controller.h b/content/browser/renderer_host/media/video_capture_controller.h index a872050..5d33d01 100644 --- a/content/browser/renderer_host/media/video_capture_controller.h +++ b/content/browser/renderer_host/media/video_capture_controller.h @@ -21,7 +21,7 @@ #include "base/compiler_specific.h" #include "base/memory/ref_counted.h" -#include "base/process.h" +#include "base/process/process.h" #include "base/synchronization/lock.h" #include "content/browser/renderer_host/media/video_capture_buffer_pool.h" #include "content/browser/renderer_host/media/video_capture_controller_event_handler.h" diff --git a/content/browser/renderer_host/media/video_capture_controller_unittest.cc b/content/browser/renderer_host/media/video_capture_controller_unittest.cc index 00155bf..58b9564 100644 --- a/content/browser/renderer_host/media/video_capture_controller_unittest.cc +++ b/content/browser/renderer_host/media/video_capture_controller_unittest.cc @@ -10,7 +10,6 @@ #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "base/message_loop/message_loop.h" -#include "base/process_util.h" #include "content/browser/browser_thread_impl.h" #include "content/browser/renderer_host/media/media_stream_provider.h" #include "content/browser/renderer_host/media/video_capture_controller.h" diff --git a/content/browser/renderer_host/media/video_capture_host_unittest.cc b/content/browser/renderer_host/media/video_capture_host_unittest.cc index f4fdc1c..762148c 100644 --- a/content/browser/renderer_host/media/video_capture_host_unittest.cc +++ b/content/browser/renderer_host/media/video_capture_host_unittest.cc @@ -9,7 +9,6 @@ #include "base/file_util.h" #include "base/memory/scoped_ptr.h" #include "base/message_loop/message_loop.h" -#include "base/process_util.h" #include "base/run_loop.h" #include "base/stl_util.h" #include "base/strings/stringprintf.h" diff --git a/content/browser/renderer_host/media/video_capture_manager_unittest.cc b/content/browser/renderer_host/media/video_capture_manager_unittest.cc index 78b2979..83c0646 100644 --- a/content/browser/renderer_host/media/video_capture_manager_unittest.cc +++ b/content/browser/renderer_host/media/video_capture_manager_unittest.cc @@ -10,7 +10,6 @@ #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "base/message_loop/message_loop.h" -#include "base/process_util.h" #include "content/browser/browser_thread_impl.h" #include "content/browser/renderer_host/media/media_stream_provider.h" #include "content/browser/renderer_host/media/video_capture_manager.h" diff --git a/content/browser/renderer_host/pepper/browser_ppapi_host_test.cc b/content/browser/renderer_host/pepper/browser_ppapi_host_test.cc index af30a13..c338a99 100644 --- a/content/browser/renderer_host/pepper/browser_ppapi_host_test.cc +++ b/content/browser/renderer_host/pepper/browser_ppapi_host_test.cc @@ -4,7 +4,6 @@ #include "content/browser/renderer_host/pepper/browser_ppapi_host_test.h" -#include "base/process_util.h" #include "content/browser/renderer_host/pepper/browser_ppapi_host_impl.h" namespace content { diff --git a/content/browser/renderer_host/pepper/pepper_flash_file_message_filter.h b/content/browser/renderer_host/pepper/pepper_flash_file_message_filter.h index 057adc1..7931764 100644 --- a/content/browser/renderer_host/pepper/pepper_flash_file_message_filter.h +++ b/content/browser/renderer_host/pepper/pepper_flash_file_message_filter.h @@ -8,7 +8,7 @@ #include "base/compiler_specific.h" #include "base/files/file_path.h" #include "base/memory/ref_counted.h" -#include "base/process.h" +#include "base/process/process.h" #include "ppapi/c/pp_instance.h" #include "ppapi/host/resource_host.h" #include "ppapi/host/resource_message_filter.h" diff --git a/content/browser/renderer_host/pepper/pepper_message_filter.cc b/content/browser/renderer_host/pepper/pepper_message_filter.cc index 56eec74..43145e0 100644 --- a/content/browser/renderer_host/pepper/pepper_message_filter.cc +++ b/content/browser/renderer_host/pepper/pepper_message_filter.cc @@ -12,7 +12,6 @@ #include "base/logging.h" #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" -#include "base/process_util.h" #include "base/threading/sequenced_worker_pool.h" #include "base/threading/worker_pool.h" #include "build/build_config.h" diff --git a/content/browser/renderer_host/pepper/pepper_message_filter.h b/content/browser/renderer_host/pepper/pepper_message_filter.h index dcb45bcd..04252ac 100644 --- a/content/browser/renderer_host/pepper/pepper_message_filter.h +++ b/content/browser/renderer_host/pepper/pepper_message_filter.h @@ -14,7 +14,7 @@ #include "base/files/file_path.h" #include "base/memory/linked_ptr.h" #include "base/memory/scoped_ptr.h" -#include "base/process.h" +#include "base/process/process.h" #include "content/public/browser/browser_message_filter.h" #include "content/public/browser/content_browser_client.h" #include "content/public/common/process_type.h" diff --git a/content/browser/renderer_host/render_message_filter.cc b/content/browser/renderer_host/render_message_filter.cc index 5f71dac..29bdc0f 100644 --- a/content/browser/renderer_host/render_message_filter.cc +++ b/content/browser/renderer_host/render_message_filter.cc @@ -10,7 +10,6 @@ #include "base/bind_helpers.h" #include "base/command_line.h" #include "base/debug/alias.h" -#include "base/process_util.h" #include "base/strings/sys_string_conversions.h" #include "base/strings/utf_string_conversions.h" #include "base/threading/thread.h" diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc index 37bb266..ef3f0a3 100644 --- a/content/browser/renderer_host/render_process_host_impl.cc +++ b/content/browser/renderer_host/render_process_host_impl.cc @@ -27,7 +27,6 @@ #include "base/metrics/histogram.h" #include "base/path_service.h" #include "base/platform_file.h" -#include "base/process_util.h" #include "base/rand_util.h" #include "base/stl_util.h" #include "base/strings/string_util.h" diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h index 65933f6..65d85a0 100644 --- a/content/browser/renderer_host/render_process_host_impl.h +++ b/content/browser/renderer_host/render_process_host_impl.h @@ -10,7 +10,7 @@ #include <string> #include "base/memory/scoped_ptr.h" -#include "base/process.h" +#include "base/process/process.h" #include "base/timer/timer.h" #include "content/browser/child_process_launcher.h" #include "content/common/content_export.h" diff --git a/content/browser/renderer_host/render_sandbox_host_linux.cc b/content/browser/renderer_host/render_sandbox_host_linux.cc index 58cee3e..d2b4592 100644 --- a/content/browser/renderer_host/render_sandbox_host_linux.cc +++ b/content/browser/renderer_host/render_sandbox_host_linux.cc @@ -24,7 +24,7 @@ #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/process/launch.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" #include "content/child/webkitplatformsupport_impl.h" diff --git a/content/browser/renderer_host/render_view_host_delegate.h b/content/browser/renderer_host/render_view_host_delegate.h index f73b041..666687a 100644 --- a/content/browser/renderer_host/render_view_host_delegate.h +++ b/content/browser/renderer_host/render_view_host_delegate.h @@ -10,7 +10,7 @@ #include "base/basictypes.h" #include "base/callback.h" #include "base/i18n/rtl.h" -#include "base/process_util.h" +#include "base/process/kill.h" #include "base/strings/string16.h" #include "content/common/content_export.h" #include "content/public/common/javascript_message_type.h" diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h index 7f63ba9..c52800a 100644 --- a/content/browser/renderer_host/render_view_host_impl.h +++ b/content/browser/renderer_host/render_view_host_impl.h @@ -13,7 +13,7 @@ #include "base/logging.h" #include "base/memory/scoped_ptr.h" #include "base/observer_list.h" -#include "base/process_util.h" +#include "base/process/kill.h" #include "content/browser/renderer_host/render_frame_host_impl.h" #include "content/browser/renderer_host/render_widget_host_impl.h" #include "content/browser/site_instance_impl.h" diff --git a/content/browser/renderer_host/render_widget_helper.h b/content/browser/renderer_host/render_widget_helper.h index 8a462c5..c5e80a1 100644 --- a/content/browser/renderer_host/render_widget_helper.h +++ b/content/browser/renderer_host/render_widget_helper.h @@ -11,7 +11,7 @@ #include "base/atomic_sequence_num.h" #include "base/containers/hash_tables.h" #include "base/memory/ref_counted.h" -#include "base/process.h" +#include "base/process/process.h" #include "base/synchronization/lock.h" #include "base/synchronization/waitable_event.h" #include "content/public/browser/browser_thread.h" diff --git a/content/browser/renderer_host/render_widget_host_impl.h b/content/browser/renderer_host/render_widget_host_impl.h index 752c7c0..864127d 100644 --- a/content/browser/renderer_host/render_widget_host_impl.h +++ b/content/browser/renderer_host/render_widget_host_impl.h @@ -18,7 +18,7 @@ #include "base/memory/scoped_ptr.h" #include "base/memory/weak_ptr.h" #include "base/observer_list.h" -#include "base/process_util.h" +#include "base/process/kill.h" #include "base/strings/string16.h" #include "base/time/time.h" #include "base/timer/timer.h" diff --git a/content/browser/renderer_host/render_widget_host_view_android.h b/content/browser/renderer_host/render_widget_host_view_android.h index 6783e7c..630ead9 100644 --- a/content/browser/renderer_host/render_widget_host_view_android.h +++ b/content/browser/renderer_host/render_widget_host_view_android.h @@ -13,7 +13,7 @@ #include "base/i18n/rtl.h" #include "base/memory/scoped_ptr.h" #include "base/memory/weak_ptr.h" -#include "base/process.h" +#include "base/process/process.h" #include "cc/layers/delegated_renderer_layer_client.h" #include "cc/layers/texture_layer_client.h" #include "cc/output/begin_frame_args.h" diff --git a/content/browser/renderer_host/render_widget_host_view_win.cc b/content/browser/renderer_host/render_widget_host_view_win.cc index 8916d05..8b6db4a8 100644 --- a/content/browser/renderer_host/render_widget_host_view_win.cc +++ b/content/browser/renderer_host/render_widget_host_view_win.cc @@ -18,7 +18,6 @@ #include "base/debug/trace_event.h" #include "base/i18n/rtl.h" #include "base/metrics/histogram.h" -#include "base/process_util.h" #include "base/threading/thread.h" #include "base/win/metro.h" #include "base/win/scoped_comptr.h" diff --git a/content/browser/tcmalloc_internals_request_job.h b/content/browser/tcmalloc_internals_request_job.h index 03912d1..20b2d4f 100644 --- a/content/browser/tcmalloc_internals_request_job.h +++ b/content/browser/tcmalloc_internals_request_job.h @@ -8,7 +8,7 @@ #include <map> #include "base/basictypes.h" #include "base/memory/singleton.h" -#include "base/process.h" +#include "base/process/process.h" #include "build/build_config.h" // USE_TCMALLOC #include "net/url_request/url_request_simple_job.h" diff --git a/content/browser/web_contents/interstitial_page_impl.h b/content/browser/web_contents/interstitial_page_impl.h index be4bd8c..389c535 100644 --- a/content/browser/web_contents/interstitial_page_impl.h +++ b/content/browser/web_contents/interstitial_page_impl.h @@ -8,7 +8,6 @@ #include "base/compiler_specific.h" #include "base/memory/scoped_ptr.h" #include "base/memory/weak_ptr.h" -#include "base/process_util.h" #include "content/browser/renderer_host/render_view_host_delegate.h" #include "content/browser/renderer_host/render_widget_host_delegate.h" #include "content/public/browser/interstitial_page.h" diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h index 240f6ea..fa0fa65 100644 --- a/content/browser/web_contents/web_contents_impl.h +++ b/content/browser/web_contents/web_contents_impl.h @@ -13,7 +13,7 @@ #include "base/gtest_prod_util.h" #include "base/memory/scoped_ptr.h" #include "base/observer_list.h" -#include "base/process.h" +#include "base/process/process.h" #include "base/values.h" #include "content/browser/renderer_host/render_view_host_delegate.h" #include "content/browser/renderer_host/render_widget_host_delegate.h" diff --git a/content/browser/zygote_host/zygote_host_impl_linux.cc b/content/browser/zygote_host/zygote_host_impl_linux.cc index c7c48f6..bb84e62 100644 --- a/content/browser/zygote_host/zygote_host_impl_linux.cc +++ b/content/browser/zygote_host/zygote_host_impl_linux.cc @@ -22,7 +22,8 @@ #include "base/path_service.h" #include "base/posix/eintr_wrapper.h" #include "base/posix/unix_domain_socket_linux.h" -#include "base/process_util.h" +#include "base/process/launch.h" +#include "base/process/memory.h" #include "base/strings/string_number_conversions.h" #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" diff --git a/content/browser/zygote_host/zygote_host_impl_linux.h b/content/browser/zygote_host/zygote_host_impl_linux.h index 1872840..9027fe7 100644 --- a/content/browser/zygote_host/zygote_host_impl_linux.h +++ b/content/browser/zygote_host/zygote_host_impl_linux.h @@ -9,7 +9,7 @@ #include <vector> #include "base/pickle.h" -#include "base/process_util.h" +#include "base/process/kill.h" #include "base/synchronization/lock.h" #include "content/public/browser/file_descriptor_info.h" #include "content/public/browser/zygote_host_linux.h" |