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

  /external/chromium/chrome/browser/prefs/
pref_service.h 36 class PrefService : public base::NonThreadSafe,
46 // your own; use the PrefService::Register*Pref methods instead.
47 Preference(const PrefService* service,
100 friend class PrefService;
110 // Reference to the PrefService in which this pref was created.
111 const PrefService* pref_service_;
118 virtual void OnPrefsLoaded(PrefService* prefs, bool success) = 0;
128 // Factory method that creates a new instance of a PrefService with the
132 // a new PrefService. |extension_pref_store| is used as the source for
133 // extension-controlled preferences and may be NULL. The PrefService take
    [all...]
pref_service.cc 80 void NotifyReadError(PrefService* pref, int message_id) {
87 PrefService* PrefService::CreatePrefService(const FilePath& pref_filename,
94 PrefService* PrefService::CreatePrefServiceAsync(
98 PrefService::Delegate* delegate) {
108 UMA_HISTOGRAM_ENUMERATION("PrefService.FileSystemType",
130 return new PrefService(managed_platform, managed_cloud, extension_prefs,
135 PrefService* PrefService::CreateIncognitoPrefService
    [all...]
  /external/chromium_org/base/prefs/
pref_service.h 51 class BASE_PREFS_EXPORT PrefService : public base::NonThreadSafe {
66 // your own; use the PrefService::Register*Pref methods instead.
67 Preference(const PrefService* service,
127 friend class PrefService;
137 // Reference to the PrefService in which this pref was created.
138 const PrefService* pref_service_;
143 PrefService(
151 virtual ~PrefService();
167 const PrefService::Preference* FindPreference(const char* path) const;
260 // PrefService has been constructed
    [all...]
pref_service.cc 41 PrefService::PrefService(
59 PrefService::~PrefService() {
69 void PrefService::InitFromStorage(bool async) {
82 void PrefService::CommitPendingWrite() {
87 bool PrefService::GetBoolean(const char* path) const {
102 int PrefService::GetInteger(const char* path) const {
117 double PrefService::GetDouble(const char* path) const {
132 std::string PrefService::GetString(const char* path) const
    [all...]

Completed in 852 milliseconds