Commit a7b8dcb6 authored by primiano's avatar primiano Committed by Commit bot

Mechanical rename of tracing includes for /base

This is just a mechanical rename of tracing includes.
See crrev.com/837303004 and the related bug for motivations.

BUG=451032
TBR=danakj@chromium.org

Review URL: https://codereview.chromium.org/893593002

Cr-Commit-Position: refs/heads/master@{#314062}
parent 61f0a2b7
...@@ -25,9 +25,9 @@ ...@@ -25,9 +25,9 @@
#include "base/android/thread_utils.h" #include "base/android/thread_utils.h"
#include "base/android/trace_event_binding.h" #include "base/android/trace_event_binding.h"
#include "base/basictypes.h" #include "base/basictypes.h"
#include "base/debug/trace_event.h"
#include "base/message_loop/message_pump_android.h" #include "base/message_loop/message_pump_android.h"
#include "base/power_monitor/power_monitor_device_source_android.h" #include "base/power_monitor/power_monitor_device_source_android.h"
#include "base/trace_event/trace_event.h"
namespace base { namespace base {
namespace android { namespace android {
......
...@@ -10,9 +10,9 @@ import android.os.SystemClock; ...@@ -10,9 +10,9 @@ import android.os.SystemClock;
import android.util.Log; import android.util.Log;
import android.util.Printer; import android.util.Printer;
/** /**
* Java mirror of Chrome trace event API. See base/debug/trace_event.h. Unlike the native version, * Java mirror of Chrome trace event API. See base/trace_event/trace_event.h. Unlike the native
* Java does not have stack objects, so a TRACE_EVENT() which does both TRACE_EVENT_BEGIN() and * version, Java does not have stack objects, so a TRACE_EVENT() which does both TRACE_EVENT_BEGIN()
* TRACE_EVENT_END() in ctor/dtor is not possible. * and TRACE_EVENT_END() in ctor/dtor is not possible.
* It is OK to use tracing before the native library has loaded, but such traces will * It is OK to use tracing before the native library has loaded, but such traces will
* be ignored. (Perhaps we could devise to buffer them up in future?). * be ignored. (Perhaps we could devise to buffer them up in future?).
*/ */
......
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
#include "base/android/jni_registrar.h" #include "base/android/jni_registrar.h"
#include "base/debug/trace_event.h"
#include "base/logging.h" #include "base/logging.h"
#include "base/android/jni_android.h" #include "base/android/jni_android.h"
#include "base/trace_event/trace_event.h"
namespace base { namespace base {
namespace android { namespace android {
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
#include <set> #include <set>
#include "base/debug/trace_event.h"
#include "base/debug/trace_event_impl.h"
#include "base/lazy_instance.h" #include "base/lazy_instance.h"
#include "base/trace_event/trace_event.h"
#include "base/trace_event/trace_event_impl.h"
#include "jni/TraceEvent_jni.h" #include "jni/TraceEvent_jni.h"
namespace base { namespace base {
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
#include "base/debug/task_annotator.h" #include "base/debug/task_annotator.h"
#include "base/debug/alias.h" #include "base/debug/alias.h"
#include "base/debug/trace_event.h"
#include "base/pending_task.h" #include "base/pending_task.h"
#include "base/trace_event/trace_event.h"
#include "base/tracked_objects.h" #include "base/tracked_objects.h"
namespace base { namespace base {
......
...@@ -19,7 +19,6 @@ ...@@ -19,7 +19,6 @@
#include "base/bind.h" #include "base/bind.h"
#include "base/containers/hash_tables.h" #include "base/containers/hash_tables.h"
#include "base/debug/trace_event.h"
#include "base/files/file_enumerator.h" #include "base/files/file_enumerator.h"
#include "base/files/file_path.h" #include "base/files/file_path.h"
#include "base/files/file_util.h" #include "base/files/file_util.h"
...@@ -32,6 +31,7 @@ ...@@ -32,6 +31,7 @@
#include "base/posix/eintr_wrapper.h" #include "base/posix/eintr_wrapper.h"
#include "base/synchronization/lock.h" #include "base/synchronization/lock.h"
#include "base/threading/thread.h" #include "base/threading/thread.h"
#include "base/trace_event/trace_event.h"
namespace base { namespace base {
......
...@@ -9,9 +9,9 @@ ...@@ -9,9 +9,9 @@
#include "base/containers/hash_tables.h" #include "base/containers/hash_tables.h"
#include "base/containers/mru_cache.h" #include "base/containers/mru_cache.h"
#include "base/debug/crash_logging.h" #include "base/debug/crash_logging.h"
#include "base/debug/trace_event.h"
#include "base/strings/string_number_conversions.h" #include "base/strings/string_number_conversions.h"
#include "base/synchronization/lock.h" #include "base/synchronization/lock.h"
#include "base/trace_event/trace_event.h"
namespace base { namespace base {
namespace internal { namespace internal {
......
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
#include "base/memory/memory_pressure_listener.h" #include "base/memory/memory_pressure_listener.h"
#include "base/debug/trace_event.h"
#include "base/lazy_instance.h" #include "base/lazy_instance.h"
#include "base/observer_list_threadsafe.h" #include "base/observer_list_threadsafe.h"
#include "base/trace_event/trace_event.h"
namespace { namespace {
......
...@@ -7,12 +7,12 @@ ...@@ -7,12 +7,12 @@
#include <limits> #include <limits>
#include <math.h> #include <math.h>
#include "base/debug/trace_event.h"
#include "base/message_loop/message_loop.h" #include "base/message_loop/message_loop.h"
#include "base/metrics/histogram.h" #include "base/metrics/histogram.h"
#include "base/process/memory.h" #include "base/process/memory.h"
#include "base/profiler/scoped_tracker.h" #include "base/profiler/scoped_tracker.h"
#include "base/strings/stringprintf.h" #include "base/strings/stringprintf.h"
#include "base/trace_event/trace_event.h"
#include "base/win/wrapped_window_proc.h" #include "base/win/wrapped_window_proc.h"
namespace base { namespace base {
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
#include <string> #include <string>
#include "base/callback.h" #include "base/callback.h"
#include "base/debug/trace_event_argument.h"
#include "base/location.h" #include "base/location.h"
#include "base/time/time.h" #include "base/time/time.h"
#include "base/trace_event/trace_event_argument.h"
namespace base { namespace base {
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
#include "base/test/test_pending_task.h" #include "base/test/test_pending_task.h"
#include "base/bind.h" #include "base/bind.h"
#include "base/debug/trace_event.h" #include "base/trace_event/trace_event.h"
#include "testing/gmock/include/gmock/gmock.h" #include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest-spi.h" #include "testing/gtest/include/gtest/gtest-spi.h"
#include "testing/gtest/include/gtest/gtest.h" #include "testing/gtest/include/gtest/gtest.h"
......
...@@ -78,8 +78,8 @@ ...@@ -78,8 +78,8 @@
#include <map> #include <map>
#include "base/debug/trace_event.h"
#include "base/memory/ref_counted.h" #include "base/memory/ref_counted.h"
#include "base/trace_event/trace_event.h"
namespace base { namespace base {
class Value; class Value;
......
...@@ -7,9 +7,9 @@ ...@@ -7,9 +7,9 @@
#include "base/base_switches.h" #include "base/base_switches.h"
#include "base/bind.h" #include "base/bind.h"
#include "base/command_line.h" #include "base/command_line.h"
#include "base/debug/trace_event_impl.h"
#include "base/files/file_util.h" #include "base/files/file_util.h"
#include "base/run_loop.h" #include "base/run_loop.h"
#include "base/trace_event/trace_event_impl.h"
namespace base { namespace base {
namespace test { namespace test {
......
...@@ -14,7 +14,6 @@ ...@@ -14,7 +14,6 @@
#include "base/callback.h" #include "base/callback.h"
#include "base/compiler_specific.h" #include "base/compiler_specific.h"
#include "base/critical_closure.h" #include "base/critical_closure.h"
#include "base/debug/trace_event.h"
#include "base/lazy_instance.h" #include "base/lazy_instance.h"
#include "base/logging.h" #include "base/logging.h"
#include "base/memory/linked_ptr.h" #include "base/memory/linked_ptr.h"
...@@ -28,6 +27,7 @@ ...@@ -28,6 +27,7 @@
#include "base/threading/thread_local.h" #include "base/threading/thread_local.h"
#include "base/threading/thread_restrictions.h" #include "base/threading/thread_restrictions.h"
#include "base/time/time.h" #include "base/time/time.h"
#include "base/trace_event/trace_event.h"
#include "base/tracked_objects.h" #include "base/tracked_objects.h"
#if defined(OS_MACOSX) #if defined(OS_MACOSX)
......
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
#include "base/bind.h" #include "base/bind.h"
#include "base/callback.h" #include "base/callback.h"
#include "base/debug/trace_event.h"
#include "base/lazy_instance.h" #include "base/lazy_instance.h"
#include "base/logging.h" #include "base/logging.h"
#include "base/memory/ref_counted.h" #include "base/memory/ref_counted.h"
...@@ -14,6 +13,7 @@ ...@@ -14,6 +13,7 @@
#include "base/threading/platform_thread.h" #include "base/threading/platform_thread.h"
#include "base/threading/thread_local.h" #include "base/threading/thread_local.h"
#include "base/threading/worker_pool.h" #include "base/threading/worker_pool.h"
#include "base/trace_event/trace_event.h"
#include "base/tracked_objects.h" #include "base/tracked_objects.h"
using tracked_objects::TrackedTime; using tracked_objects::TrackedTime;
......
...@@ -6,10 +6,10 @@ ...@@ -6,10 +6,10 @@
#include "base/bind.h" #include "base/bind.h"
#include "base/callback.h" #include "base/callback.h"
#include "base/debug/trace_event.h"
#include "base/logging.h" #include "base/logging.h"
#include "base/pending_task.h" #include "base/pending_task.h"
#include "base/threading/thread_local.h" #include "base/threading/thread_local.h"
#include "base/trace_event/trace_event.h"
#include "base/tracked_objects.h" #include "base/tracked_objects.h"
namespace base { namespace base {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment