HomeSort by relevance Sort by last modified time
    Searched refs:CrosSettings (Results 1 - 7 of 7) sorted by null

  /external/chromium/chrome/browser/ui/webui/options/chromeos/
cros_options_page_ui_handler.cc 15 CrosSettings::Get()->AddSettingsProvider(settings_provider_.get());
20 CrosSettings::Get()->RemoveSettingsProvider(settings_provider_.get());
core_chromeos_options_handler.cc 23 if (!CrosSettings::IsCrosSettings(pref_name))
27 CrosSettings::Get()->Get(pref_name, &pref_value);
32 if (!CrosSettings::IsCrosSettings(pref_name))
35 // TODO(xiyuan): Change this when CrosSettings supports observers.
36 CrosSettings::Get()->AddSettingsObserver(pref_name.c_str(), this);
42 if (!CrosSettings::IsCrosSettings(pref_name))
45 // CrosSettings takes ownership of its value so we need to copy it.
47 CrosSettings::Get()->Set(pref_name, pref_value);
55 if (CrosSettings::IsCrosSettings(path))
56 CrosSettings::Get()->RemoveSettingsObserver(path.c_str(), this)
    [all...]
system_settings_provider.cc 230 CrosSettings::Get()->FireObservers(kSystemTimezone);
  /external/chromium/chrome/browser/chromeos/
cros_settings.cc 18 static base::LazyInstance<CrosSettings> g_cros_settings(
21 CrosSettings* CrosSettings::Get() {
26 bool CrosSettings::IsCrosSettings(const std::string& path) {
30 void CrosSettings::FireObservers(const char* path) {
42 Source<CrosSettings>(this),
47 void CrosSettings::Set(const std::string& path, Value* in_value) {
56 void CrosSettings::SetBoolean(const std::string& path, bool in_value) {
61 void CrosSettings::SetInteger(const std::string& path, int in_value) {
66 void CrosSettings::SetDouble(const std::string& path, double in_value)
    [all...]
cros_settings.h 30 class CrosSettings : public base::NonThreadSafe {
33 static CrosSettings* Get();
84 CrosSettings();
85 ~CrosSettings();
87 friend struct base::DefaultLazyInstanceTraits<CrosSettings>;
89 DISALLOW_COPY_AND_ASSIGN(CrosSettings);
metrics_cros_settings_provider.cc 28 CrosSettings::Get()->FireObservers(path.c_str());
user_cros_settings_provider.cc 217 CrosSettings::Get()->FireObservers(path.c_str());
370 CrosSettings::Get()->FireObservers(name.c_str());
392 CrosSettings::Get()->FireObservers(kAccountsPrefUsers);
402 CrosSettings::Get()->FireObservers(kAccountsPrefUsers);

Completed in 1960 milliseconds