#include "components/user_prefs/user_prefs.h"
#include "base/check.h"
#include "base/memory/ptr_util.h"
#include "base/memory/singleton.h"
#include "components/prefs/pref_service.h"
namespace user_prefs {
namespace {
void* UserDataKey() { … }
}
bool UserPrefs::IsInitialized(base::SupportsUserData* context) { … }
PrefService* UserPrefs::Get(base::SupportsUserData* context) { … }
void UserPrefs::Set(base::SupportsUserData* context, PrefService* prefs) { … }
UserPrefs::UserPrefs(PrefService* prefs) : … { … }
UserPrefs::~UserPrefs() { … }
}