Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(495)

Side by Side Diff: chrome/browser/policy/cloud/user_policy_signin_service_factory.cc

Issue 1102733002: Remove most occurences of PrefRegistrySyncable::UNSYNCABLE_PREF (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prefs-add-reg-funcs
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/policy/cloud/user_policy_signin_service_factory.h" 5 #include "chrome/browser/policy/cloud/user_policy_signin_service_factory.h"
6 6
7 #include "base/memory/ref_counted.h" 7 #include "base/memory/ref_counted.h"
8 #include "base/prefs/pref_service.h" 8 #include "base/prefs/pref_service.h"
9 #include "chrome/browser/browser_process.h" 9 #include "chrome/browser/browser_process.h"
10 #include "chrome/browser/policy/cloud/user_cloud_policy_manager_factory.h" 10 #include "chrome/browser/policy/cloud/user_cloud_policy_manager_factory.h"
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 #else 91 #else
92 // Create this object when the profile is created so it can track any 92 // Create this object when the profile is created so it can track any
93 // user signin activity. 93 // user signin activity.
94 return true; 94 return true;
95 #endif 95 #endif
96 } 96 }
97 97
98 void UserPolicySigninServiceFactory::RegisterProfilePrefs( 98 void UserPolicySigninServiceFactory::RegisterProfilePrefs(
99 user_prefs::PrefRegistrySyncable* user_prefs) { 99 user_prefs::PrefRegistrySyncable* user_prefs) {
100 #if defined(OS_ANDROID) || defined(OS_IOS) 100 #if defined(OS_ANDROID) || defined(OS_IOS)
101 user_prefs->RegisterInt64Pref( 101 user_prefs->RegisterInt64Pref(prefs::kLastPolicyCheckTime, 0);
102 prefs::kLastPolicyCheckTime,
103 0,
104 user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
105 #endif 102 #endif
106 } 103 }
107 104
108 } // namespace policy 105 } // namespace policy
OLDNEW
« no previous file with comments | « chrome/browser/plugins/plugin_prefs_factory.cc ('k') | chrome/browser/prefs/incognito_mode_prefs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698