Avi Drissman | 8ba1bad | 2022-09-13 19:22:36 | [diff] [blame] | 1 | // Copyright 2022 The Chromium Authors |
Your Name | 9b88ae7 | 2022-08-22 20:39:09 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef COMPONENTS_LENS_LENS_METADATA_H_ |
| 6 | #define COMPONENTS_LENS_LENS_METADATA_H_ |
| 7 | |
Lei Zhang | 2cfcedf | 2025-05-17 04:16:48 | [diff] [blame] | 8 | #include <string> |
| 9 | #include <vector> |
| 10 | |
Your Name | 9b88ae7 | 2022-08-22 20:39:09 | [diff] [blame] | 11 | #include "components/lens/lens_metadata.mojom.h" |
Your Name | 9b88ae7 | 2022-08-22 20:39:09 | [diff] [blame] | 12 | |
| 13 | namespace LensMetadata { |
Lei Zhang | 2cfcedf | 2025-05-17 04:16:48 | [diff] [blame] | 14 | |
Your Name | 9b88ae7 | 2022-08-22 20:39:09 | [diff] [blame] | 15 | std::string CreateProto( |
| 16 | const std::vector<lens::mojom::LatencyLogPtr>& log_data); |
Lei Zhang | 2cfcedf | 2025-05-17 04:16:48 | [diff] [blame] | 17 | |
| 18 | } // namespace LensMetadata |
Your Name | 9b88ae7 | 2022-08-22 20:39:09 | [diff] [blame] | 19 | |
shaochenguang | 61f8f1d8 | 2023-11-29 23:57:17 | [diff] [blame] | 20 | #endif // COMPONENTS_LENS_LENS_METADATA_H_ |