blob: 0187842e8404012b23ee92b15d12678ab0900085 [file] [log] [blame]
Avi Drissman8ba1bad2022-09-13 19:22:361// Copyright 2022 The Chromium Authors
Your Name9b88ae72022-08-22 20:39:092// 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 Zhang2cfcedf2025-05-17 04:16:488#include <string>
9#include <vector>
10
Your Name9b88ae72022-08-22 20:39:0911#include "components/lens/lens_metadata.mojom.h"
Your Name9b88ae72022-08-22 20:39:0912
13namespace LensMetadata {
Lei Zhang2cfcedf2025-05-17 04:16:4814
Your Name9b88ae72022-08-22 20:39:0915std::string CreateProto(
16 const std::vector<lens::mojom::LatencyLogPtr>& log_data);
Lei Zhang2cfcedf2025-05-17 04:16:4817
18} // namespace LensMetadata
Your Name9b88ae72022-08-22 20:39:0919
shaochenguang61f8f1d82023-11-29 23:57:1720#endif // COMPONENTS_LENS_LENS_METADATA_H_