// 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_STORAGE_H_ #define COMPONENTS_SYNC_NIGORI_NIGORI_STORAGE_H_ #include <optional> namespace sync_pb { class NigoriLocalData; } // namespace sync_pb namespace syncer { // Interface for storing/loading Nigori data from the disk. class NigoriStorage { … }; } // namespace syncer #endif // COMPONENTS_SYNC_NIGORI_NIGORI_STORAGE_H_