OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "base/trace_event/tracing_agent.h" |
| 6 |
| 7 namespace base { |
| 8 namespace trace_event { |
| 9 |
| 10 const char TracingAgent::kChromeTracingAgentName[] = "chrome"; |
| 11 const char TracingAgent::kETWTracingAgentName[] = "etw"; |
| 12 const char TracingAgent::kCrOSTracingAgentName[] = "cros"; |
| 13 const char TracingAgent::kPowerTracingAgentName[] = "battor"; |
| 14 |
| 15 } // namespace trace_event |
| 16 } // namespace base |
OLD | NEW |