OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CrosSettings
(Results
1 - 25
of
93
) sorted by null
1
2
3
4
/external/chromium_org/chrome/browser/chromeos/settings/
owner_flags_storage.h
13
class
CrosSettings
;
22
OwnerFlagsStorage(PrefService *prefs,
CrosSettings
*cros_settings);
28
CrosSettings
* cros_settings_;
cros_settings.cc
22
static
CrosSettings
* g_cros_settings = NULL;
25
void
CrosSettings
::Initialize() {
27
g_cros_settings = new
CrosSettings
(DeviceSettingsService::Get());
31
bool
CrosSettings
::IsInitialized() {
36
void
CrosSettings
::Shutdown() {
43
CrosSettings
*
CrosSettings
::Get() {
48
CrosSettings
::
CrosSettings
(DeviceSettingsService* device_settings_service) {
50
base::Bind(&
CrosSettings
::FireObservers
[
all
...]
stub_cros_settings_provider.h
15
class
CrosSettings
;
41
CrosSettings
* cros_settings_;
cros_settings.h
30
class
CrosSettings
: public base::NonThreadSafe {
36
static
CrosSettings
* Get();
40
explicit
CrosSettings
(DeviceSettingsService* device_settings_service);
41
virtual ~
CrosSettings
();
123
DISALLOW_COPY_AND_ASSIGN(
CrosSettings
);
126
// Helper class for tests. Initializes the
CrosSettings
singleton on
/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
...]
/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
);
/external/chromium_org/chrome/browser/chromeos/extensions/
info_private_apitest.cc
12
chromeos::
CrosSettings
::Get()->Set(chromeos::kSystemTimezone,
/external/chromium_org/chrome/browser/chromeos/login/
version_info_updater.h
19
class
CrosSettings
;
78
ScopedVector<
CrosSettings
::ObserverSubscription> subscriptions_;
80
chromeos::
CrosSettings
* cros_settings_;
existing_user_controller.h
33
class
CrosSettings
;
256
CrosSettings
* cros_settings_;
305
scoped_ptr<
CrosSettings
::ObserverSubscription> show_user_names_subscription_;
306
scoped_ptr<
CrosSettings
::ObserverSubscription> allow_new_user_subscription_;
307
scoped_ptr<
CrosSettings
::ObserverSubscription> allow_guest_subscription_;
308
scoped_ptr<
CrosSettings
::ObserverSubscription> users_subscription_;
309
scoped_ptr<
CrosSettings
::ObserverSubscription>
311
scoped_ptr<
CrosSettings
::ObserverSubscription>
login_screen_policy_browsertest.cc
38
scoped_ptr<
CrosSettings
::ObserverSubscription> subscription(
39
chromeos::
CrosSettings
::Get()->AddSettingsObserver(
supervised_user_manager_impl.h
16
class
CrosSettings
;
75
CrosSettings
* cros_settings_;
/external/chromium_org/chrome/browser/chromeos/policy/
device_local_account.h
12
class
CrosSettings
;
68
chromeos::
CrosSettings
* cros_settings,
73
chromeos::
CrosSettings
* cros_settings);
device_status_collector.h
27
class
CrosSettings
;
192
chromeos::
CrosSettings
* cros_settings_;
210
scoped_ptr<chromeos::
CrosSettings
::ObserverSubscription>
212
scoped_ptr<chromeos::
CrosSettings
::ObserverSubscription>
214
scoped_ptr<chromeos::
CrosSettings
::ObserverSubscription>
216
scoped_ptr<chromeos::
CrosSettings
::ObserverSubscription>
218
scoped_ptr<chromeos::
CrosSettings
::ObserverSubscription>
220
scoped_ptr<chromeos::
CrosSettings
::ObserverSubscription>
cloud_external_data_policy_observer.h
65
chromeos::
CrosSettings
* cros_settings,
110
chromeos::
CrosSettings
* cros_settings_;
120
scoped_ptr<chromeos::
CrosSettings
::ObserverSubscription>
app_pack_updater.h
106
scoped_ptr<chromeos::
CrosSettings
::ObserverSubscription>
/external/chromium_org/chrome/browser/chromeos/kiosk_mode/
kiosk_mode_settings_unittest.cc
32
CrosSettings
* cros_settings =
CrosSettings
::Get();
45
CrosSettings
* cros_settings =
CrosSettings
::Get();
94
chromeos::
CrosSettings
* cros_settings = chromeos::
CrosSettings
::Get();
125
chromeos::
CrosSettings
* cros_settings = chromeos::
CrosSettings
::Get();
/external/chromium_org/chrome/browser/chromeos/attestation/
attestation_policy_observer.h
22
class
CrosSettings
;
33
// The observer immediately connects with
CrosSettings
to listen for policy
91
CrosSettings
* cros_settings_;
99
scoped_ptr<
CrosSettings
::ObserverSubscription> attestation_subscription_;
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
accounts_options_handler.cc
34
CrosSettings
* cros_settings =
CrosSettings
::Get();
111
CrosSettings
::Get()->RemoveFromList(kAccountsPrefUsers, &canonical_email);
124
CrosSettings
* cros_settings =
CrosSettings
::Get();
core_chromeos_options_handler.cc
136
if (!
CrosSettings
::IsCrosSettings(pref_name)) {
142
const base::Value* pref_value =
CrosSettings
::Get()->GetPref(pref_name);
168
if (!
CrosSettings
::IsCrosSettings(pref_name))
171
linked_ptr<
CrosSettings
::ObserverSubscription> subscription(
172
CrosSettings
::Get()->AddSettingsObserver(
193
if (!
CrosSettings
::IsCrosSettings(pref_name))
195
CrosSettings
::Get()->Set(pref_name, *value);
204
if (
CrosSettings
::IsCrosSettings(path))
254
DCHECK(
CrosSettings
::Get()->IsCrosSettings(setting_name));
/external/chromium_org/chrome/browser/ui/webui/chromeos/
ui_account_tweaks.cc
21
CrosSettings
::Get()->GetString(kDeviceOwner, &owner_email);
/external/chromium_org/chrome/browser/ui/webui/help/
help_utils_chromeos.cc
28
chromeos::
CrosSettings
* settings = chromeos::
CrosSettings
::Get();
version_updater_chromeos.cc
29
using chromeos::
CrosSettings
;
67
chromeos::
CrosSettings
* settings = chromeos::
CrosSettings
::Get();
134
CrosSettings
::Get()->SetString(chromeos::kReleaseChannel, channel);
/external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_manager.cc
104
CrosSettings
::Get()->SetString(kAccountsPrefDeviceLocalAccountAutoLoginId,
108
CrosSettings
::Get()->SetString(
111
CrosSettings
::Get()->SetInteger(
226
policy::GetDeviceLocalAccounts(
CrosSettings
::Get());
244
policy::SetDeviceLocalAccounts(
CrosSettings
::Get(), device_local_accounts);
253
policy::GetDeviceLocalAccounts(
CrosSettings
::Get());
268
policy::SetDeviceLocalAccounts(
CrosSettings
::Get(), device_local_accounts);
298
if (
CrosSettings
::Get()->GetBoolean(
336
CrosSettings
::Get()->AddSettingsObserver(
340
CrosSettings
::Get()->AddSettingsObserver
[
all
...]
Completed in 594 milliseconds
1
2
3
4