Index: base/trace_event/tracing_agent.cc |
diff --git a/base/trace_event/tracing_agent.cc b/base/trace_event/tracing_agent.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6dfca8dd7d05a93df97c9e9c0d75b99e819b1e7e |
--- /dev/null |
+++ b/base/trace_event/tracing_agent.cc |
@@ -0,0 +1,16 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "base/trace_event/tracing_agent.h" |
+ |
+namespace base { |
+namespace trace_event { |
+ |
+const char TracingAgent::kChromeTracingAgentName[] = "chrome"; |
+const char TracingAgent::kETWTracingAgentName[] = "etw"; |
+const char TracingAgent::kCrOSTracingAgentName[] = "cros"; |
+const char TracingAgent::kPowerTracingAgentName[] = "battor"; |
+ |
+} // namespace trace_event |
+} // namespace base |