| // Copyright 2019 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_DEVELOPER_FORENSICS_FEEDBACK_DATA_ANNOTATIONS_BOARD_NAME_PROVIDER_H_ |
| #define SRC_DEVELOPER_FORENSICS_FEEDBACK_DATA_ANNOTATIONS_BOARD_NAME_PROVIDER_H_ |
| |
| #include <optional> |
| |
| #include "src/developer/forensics/feedback_data/annotations/types.h" |
| |
| namespace forensics { |
| namespace feedback_data { |
| |
| // Synchronously fetches the name of the device's board. |
| AnnotationOr GetBoardName(); |
| |
| } // namespace feedback_data |
| } // namespace forensics |
| |
| #endif // SRC_DEVELOPER_FORENSICS_FEEDBACK_DATA_ANNOTATIONS_BOARD_NAME_PROVIDER_H_ |