#ifndef COMPONENTS_SYNC_PREFERENCES_DUAL_LAYER_USER_PREF_STORE_H_
#define COMPONENTS_SYNC_PREFERENCES_DUAL_LAYER_USER_PREF_STORE_H_
#include <memory>
#include <set>
#include <string>
#include <string_view>
#include <utility>
#include "base/containers/flat_set.h"
#include "base/functional/callback_forward.h"
#include "base/memory/raw_ptr.h"
#include "base/observer_list.h"
#include "components/prefs/persistent_pref_store.h"
#include "components/prefs/value_map_pref_store.h"
#include "components/sync/base/data_type.h"
#include "components/sync/service/sync_service_observer.h"
namespace syncer {
class SyncService;
}
namespace sync_preferences {
class PrefModelAssociatorClient;
class DualLayerUserPrefStore : public PersistentPrefStore,
public syncer::SyncServiceObserver { … };
}
#endif