Chromium Code Reviews

Unified Diff: chrome/browser/chromeos/user_cros_settings_provider.cc

Issue 5734002: Continuation of CL 5685007, rename the singleton accessor method in more files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/chromeos/user_cros_settings_provider.cc
diff --git a/chrome/browser/chromeos/user_cros_settings_provider.cc b/chrome/browser/chromeos/user_cros_settings_provider.cc
index 4c15e01b7b61022704012e9f3330a40a79575494..af2810d55a427e598563b34dc14ed20a44215c2e 100644
--- a/chrome/browser/chromeos/user_cros_settings_provider.cc
+++ b/chrome/browser/chromeos/user_cros_settings_provider.cc
@@ -157,7 +157,7 @@ bool GetUserWhitelist(ListValue* user_list) {
class UserCrosSettingsTrust : public SignedSettingsHelper::Callback,
public NotificationObserver {
public:
- static UserCrosSettingsTrust* GetSharedInstance() {
+ static UserCrosSettingsTrust* GetInstance() {
return Singleton<UserCrosSettingsTrust>::get();
}
@@ -438,7 +438,7 @@ namespace chromeos {
UserCrosSettingsProvider::UserCrosSettingsProvider() {
// Trigger prefetching of settings.
- UserCrosSettingsTrust::GetSharedInstance();
+ UserCrosSettingsTrust::GetInstance();
}
// static
@@ -452,36 +452,36 @@ void UserCrosSettingsProvider::RegisterPrefs(PrefService* local_state) {
}
bool UserCrosSettingsProvider::RequestTrustedAllowGuest(Task* callback) {
- return UserCrosSettingsTrust::GetSharedInstance()->RequestTrustedEntity(
+ return UserCrosSettingsTrust::GetInstance()->RequestTrustedEntity(
kAccountsPrefAllowGuest, callback);
}
bool UserCrosSettingsProvider::RequestTrustedAllowNewUser(Task* callback) {
- return UserCrosSettingsTrust::GetSharedInstance()->RequestTrustedEntity(
+ return UserCrosSettingsTrust::GetInstance()->RequestTrustedEntity(
kAccountsPrefAllowNewUser, callback);
}
bool UserCrosSettingsProvider::RequestTrustedShowUsersOnSignin(Task* callback) {
- return UserCrosSettingsTrust::GetSharedInstance()->RequestTrustedEntity(
+ return UserCrosSettingsTrust::GetInstance()->RequestTrustedEntity(
kAccountsPrefShowUserNamesOnSignIn, callback);
}
bool UserCrosSettingsProvider::RequestTrustedOwner(Task* callback) {
- return UserCrosSettingsTrust::GetSharedInstance()->RequestTrustedEntity(
+ return UserCrosSettingsTrust::GetInstance()->RequestTrustedEntity(
kDeviceOwner, callback);
}
// static
bool UserCrosSettingsProvider::cached_allow_guest() {
// Trigger prefetching if singleton object still does not exist.
- UserCrosSettingsTrust::GetSharedInstance();
+ UserCrosSettingsTrust::GetInstance();
return g_browser_process->local_state()->GetBoolean(kAccountsPrefAllowGuest);
}
// static
bool UserCrosSettingsProvider::cached_allow_new_user() {
// Trigger prefetching if singleton object still does not exist.
- UserCrosSettingsTrust::GetSharedInstance();
+ UserCrosSettingsTrust::GetInstance();
return g_browser_process->local_state()->GetBoolean(
kAccountsPrefAllowNewUser);
}
@@ -489,7 +489,7 @@ bool UserCrosSettingsProvider::cached_allow_new_user() {
// static
bool UserCrosSettingsProvider::cached_show_users_on_signin() {
// Trigger prefetching if singleton object still does not exist.
- UserCrosSettingsTrust::GetSharedInstance();
+ UserCrosSettingsTrust::GetInstance();
return g_browser_process->local_state()->GetBoolean(
kAccountsPrefShowUserNamesOnSignIn);
}
@@ -512,7 +512,7 @@ const ListValue* UserCrosSettingsProvider::cached_whitelist() {
// static
std::string UserCrosSettingsProvider::cached_owner() {
// Trigger prefetching if singleton object still does not exist.
- UserCrosSettingsTrust::GetSharedInstance();
+ UserCrosSettingsTrust::GetInstance();
if (!g_browser_process || !g_browser_process->local_state())
return std::string();
return g_browser_process->local_state()->GetString(kDeviceOwner);
@@ -535,7 +535,7 @@ bool UserCrosSettingsProvider::IsEmailInCachedWhitelist(
void UserCrosSettingsProvider::DoSet(const std::string& path,
Value* in_value) {
- UserCrosSettingsTrust::GetSharedInstance()->Set(path, in_value);
+ UserCrosSettingsTrust::GetInstance()->Set(path, in_value);
}
bool UserCrosSettingsProvider::Get(const std::string& path,
@@ -561,7 +561,7 @@ bool UserCrosSettingsProvider::HandlesSetting(const std::string& path) {
void UserCrosSettingsProvider::WhitelistUser(const std::string& email) {
SignedSettingsHelper::Get()->StartWhitelistOp(
- email, true, UserCrosSettingsTrust::GetSharedInstance());
+ email, true, UserCrosSettingsTrust::GetInstance());
PrefService* prefs = g_browser_process->local_state();
ListValue* cached_whitelist = prefs->GetMutableList(kAccountsPrefUsers);
cached_whitelist->Append(Value::CreateStringValue(email));
@@ -570,7 +570,7 @@ void UserCrosSettingsProvider::WhitelistUser(const std::string& email) {
void UserCrosSettingsProvider::UnwhitelistUser(const std::string& email) {
SignedSettingsHelper::Get()->StartWhitelistOp(
- email, false, UserCrosSettingsTrust::GetSharedInstance());
+ email, false, UserCrosSettingsTrust::GetInstance());
PrefService* prefs = g_browser_process->local_state();
ListValue* cached_whitelist = prefs->GetMutableList(kAccountsPrefUsers);

Powered by Google App Engine