// Copyright 2019 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_NIGORI_KEY_BAG_H_ #define COMPONENTS_SYNC_NIGORI_NIGORI_KEY_BAG_H_ #include <map> #include <memory> #include <string> namespace sync_pb { class EncryptedData; class NigoriKey; class LocalNigoriKeyBag; } // namespace sync_pb namespace syncer { class Nigori; // A set of Nigori keys, aka keybag. Note that there is no notion of default // key. class NigoriKeyBag { … }; } // namespace syncer #endif // COMPONENTS_SYNC_NIGORI_NIGORI_KEY_BAG_H_