chromium/components/feed/core/v2/public/logging_parameters.h

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_FEED_CORE_V2_PUBLIC_LOGGING_PARAMETERS_H_
#define COMPONENTS_FEED_CORE_V2_PUBLIC_LOGGING_PARAMETERS_H_

#include <string>

#include "components/feed/core/v2/public/types.h"

namespace feedui {
class LoggingParameters;
}

namespace feed {
struct StreamModelUpdateRequest;

struct LoggingParameters {};

LoggingParameters MakeLoggingParameters(
    const std::string client_instance_id,
    const StreamModelUpdateRequest& update_request);

LoggingParameters FromProto(const feedui::LoggingParameters& proto);
void ToProto(const LoggingParameters& logging_parameters,
             feedui::LoggingParameters& proto);

}  // namespace feed

#endif  // COMPONENTS_FEED_CORE_V2_PUBLIC_LOGGING_PARAMETERS_H_