| // Copyright 2016 The Fuchsia Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef SRC_PERFORMANCE_TRACE_COMMANDS_LIST_CATEGORIES_H_ |
| #define SRC_PERFORMANCE_TRACE_COMMANDS_LIST_CATEGORIES_H_ |
| |
| #include "src/performance/trace/command.h" |
| |
| namespace tracing { |
| |
| class ListCategoriesCommand : public CommandWithController { |
| public: |
| static Info Describe(); |
| |
| explicit ListCategoriesCommand(); |
| |
| protected: |
| void Start(const fxl::CommandLine& command_line) override; |
| }; |
| |
| } // namespace tracing |
| |
| #endif // SRC_PERFORMANCE_TRACE_COMMANDS_LIST_CATEGORIES_H_ |