HomeSort by relevance Sort by last modified time
    Searched defs:UserPrefs (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/components/user_prefs/
user_prefs.cc 26 PrefService* UserPrefs::Get(content::BrowserContext* context) {
29 return static_cast<UserPrefs*>(
34 void UserPrefs::Set(content::BrowserContext* context, PrefService* prefs) {
38 context->SetUserData(UserDataKey(), new UserPrefs(prefs));
41 UserPrefs::UserPrefs(PrefService* prefs) : prefs_(prefs) {
44 UserPrefs::~UserPrefs() {
user_prefs.h 22 // UserPrefs::Get().
25 // attach it to BrowserContext using the UserPrefs::Set() function.
26 class USER_PREFS_EXPORT UserPrefs : public base::SupportsUserData::Data {
37 explicit UserPrefs(PrefService* prefs);
38 virtual ~UserPrefs();
43 DISALLOW_COPY_AND_ASSIGN(UserPrefs);

Completed in 134 milliseconds