// Copyright 2024 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/manta/anchovy/anchovy_proto_helper.h" #include "base/functional/callback.h" #include "base/logging.h" #include "components/manta/manta_service_callbacks.h" namespace manta::anchovy { proto::Request AnchovyProtoHelper::ComposeRequest( const ImageDescriptionRequest& request) { … } void AnchovyProtoHelper::HandleImageDescriptionResponse( MantaGenericCallback callback, std::unique_ptr<proto::Response> manta_response, MantaStatus manta_status) { … } } // namespace manta::anchovy