// 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. #ifndef COMPONENTS_PLUS_ADDRESSES_PLUS_ADDRESS_HTTP_CLIENT_H_ #define COMPONENTS_PLUS_ADDRESSES_PLUS_ADDRESS_HTTP_CLIENT_H_ #include <string> #include <vector> #include "base/functional/callback_forward.h" #include "base/time/time.h" #include "base/types/expected.h" #include "components/plus_addresses/plus_address_types.h" namespace url { class Origin; } // namespace url namespace plus_addresses { // An interface for communicating with the remote plus address server. class PlusAddressHttpClient { … }; } // namespace plus_addresses #endif // COMPONENTS_PLUS_ADDRESSES_PLUS_ADDRESS_HTTP_CLIENT_H_