#ifndef COMPONENTS_SYNC_PREFERENCES_COMMON_SYNCABLE_PREFS_DATABASE_H_
#define COMPONENTS_SYNC_PREFERENCES_COMMON_SYNCABLE_PREFS_DATABASE_H_
#include <map>
#include <string_view>
#include "components/sync_preferences/syncable_prefs_database.h"
namespace sync_preferences {
inline constexpr char kSyncablePrefForTesting[] = …;
inline constexpr char kSyncableMergeableDictPrefForTesting[] = …;
inline constexpr char kSyncableMergeableListPrefForTesting[] = …;
inline constexpr char kSyncableHistorySensitiveListPrefForTesting[] = …;
class CommonSyncablePrefsDatabase : public SyncablePrefsDatabase { … };
}
#endif