#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);
}
#endif