Index: base/trace_event/trace_event_system_stats_monitor.cc |
diff --git a/base/trace_event/trace_event_system_stats_monitor.cc b/base/trace_event/trace_event_system_stats_monitor.cc |
index 6fa0174577d05059564bf4cb850c8c23429c28e2..98f361a9d9ba1b94d20d736f1b414a3d2c9182cd 100644 |
--- a/base/trace_event/trace_event_system_stats_monitor.cc |
+++ b/base/trace_event/trace_event_system_stats_monitor.cc |
@@ -16,13 +16,13 @@ |
#include "base/trace_event/trace_event.h" |
namespace base { |
-namespace debug { |
+namespace trace_event { |
namespace { |
///////////////////////////////////////////////////////////////////////////// |
// Holds profiled system stats until the tracing system needs to serialize it. |
-class SystemStatsHolder : public base::debug::ConvertableToTraceFormat { |
+class SystemStatsHolder : public base::trace_event::ConvertableToTraceFormat { |
public: |
SystemStatsHolder() { } |
@@ -30,7 +30,7 @@ class SystemStatsHolder : public base::debug::ConvertableToTraceFormat { |
// Uses the previous stats to compute rates if this is not the first profile. |
void GetSystemProfilingStats(); |
- // base::debug::ConvertableToTraceFormat overrides: |
+ // base::trace_event::ConvertableToTraceFormat overrides: |
void AppendAsTraceFormat(std::string* out) const override { |
AppendSystemProfileAsTraceFormat(system_stats_, out); |
} |
@@ -129,5 +129,5 @@ void AppendSystemProfileAsTraceFormat(const SystemMetrics& system_metrics, |
*output += tmp; |
} |
-} // namespace debug |
+} // namespace trace_event |
} // namespace base |