| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/trace_event/memory_dump_request_args.h" | 5 #include "base/trace_event/memory_dump_request_args.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 | 8 |
| 9 namespace base { | 9 namespace base { |
| 10 namespace trace_event { | 10 namespace trace_event { |
| 11 | 11 |
| 12 // static | 12 // static |
| 13 const char* MemoryDumpTypeToString( | 13 const char* MemoryDumpTypeToString( |
| 14 const MemoryDumpType& dump_type) { | 14 const MemoryDumpType& dump_type) { |
| 15 switch (dump_type) { | 15 switch (dump_type) { |
| 16 case MemoryDumpType::TASK_BEGIN: | 16 case MemoryDumpType::TASK_BEGIN: |
| 17 return "TASK_BEGIN"; | 17 return "TASK_BEGIN"; |
| 18 case MemoryDumpType::TASK_END: | 18 case MemoryDumpType::TASK_END: |
| 19 return "TASK_END"; | 19 return "TASK_END"; |
| 20 case MemoryDumpType::PERIODIC_INTERVAL: | 20 case MemoryDumpType::PERIODIC_INTERVAL: |
| 21 return "PERIODIC_INTERVAL"; | 21 return "PERIODIC_INTERVAL"; |
| 22 case MemoryDumpType::PERIODIC_INTERVAL_WITH_MMAPS: |
| 23 return "PERIODIC_INTERVAL_WITH_MMAPS"; |
| 22 case MemoryDumpType::EXPLICITLY_TRIGGERED: | 24 case MemoryDumpType::EXPLICITLY_TRIGGERED: |
| 23 return "EXPLICITLY_TRIGGERED"; | 25 return "EXPLICITLY_TRIGGERED"; |
| 24 } | 26 } |
| 25 NOTREACHED(); | 27 NOTREACHED(); |
| 26 return "UNKNOWN"; | 28 return "UNKNOWN"; |
| 27 } | 29 } |
| 28 | 30 |
| 29 } // namespace trace_event | 31 } // namespace trace_event |
| 30 } // namespace base | 32 } // namespace base |
| OLD | NEW |