This source file includes following definitions.
- UserDataKey
- Get
- Set
#include "components/user_prefs/user_prefs.h"
#include "base/logging.h"
#include "base/memory/singleton.h"
#include "base/prefs/pref_service.h"
#include "content/public/browser/browser_context.h"
namespace user_prefs {
namespace {
void* UserDataKey() {
static int data_key = 0;
return reinterpret_cast<void*>(&data_key);
}
}
PrefService* UserPrefs::Get(content::BrowserContext* context) {
DCHECK(context);
DCHECK(context->GetUserData(UserDataKey()));
return static_cast<UserPrefs*>(
context->GetUserData(UserDataKey()))->prefs_;
}
void UserPrefs::Set(content::BrowserContext* context, PrefService* prefs) {
DCHECK(context);
DCHECK(prefs);
DCHECK(!context->GetUserData(UserDataKey()));
context->SetUserData(UserDataKey(), new UserPrefs(prefs));
}
UserPrefs::UserPrefs(PrefService* prefs) : prefs_(prefs) {
}
UserPrefs::~UserPrefs() {
}
}