// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/optimization_guide/core/model_execution/on_device_model_execution_proto_value_utils.h" #include "base/notreached.h" #include "base/strings/string_number_conversions.h" namespace optimization_guide { std::string GetStringFromValue(const proto::Value& value) { … } bool AreValuesEqual(const proto::Value& a, const proto::Value& b) { … } } // namespace optimization_guide