// 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. #ifndef COMPONENTS_SYNC_NIGORI_CROSS_USER_SHARING_KEYS_H_ #define COMPONENTS_SYNC_NIGORI_CROSS_USER_SHARING_KEYS_H_ #include <map> #include <memory> #include <string> #include "components/sync/engine/nigori/cross_user_sharing_public_private_key_pair.h" namespace sync_pb { class CrossUserSharingKeys; class CrossUserSharingPrivateKey; } // namespace sync_pb namespace syncer { // A set of Public-private key pairs. Note that there is no notion of default // key. class CrossUserSharingKeys { … }; } // namespace syncer #endif // COMPONENTS_SYNC_NIGORI_CROSS_USER_SHARING_KEYS_H_