// 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. #include "components/segmentation_platform/public/input_context.h" #include <string_view> #include "base/values.h" namespace segmentation_platform { InputContext::InputContext() = default; InputContext::~InputContext() = default; std::optional<processing::ProcessedValue> InputContext::GetMetadataArgument( std::string_view arg_name) const { … } base::Value InputContext::ToDebugValue() const { … } std::ostream& operator<<(std::ostream& out, const InputContext& value) { … } } // namespace segmentation_platform