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

Side by Side Diff: chrome/browser/profiles/gaia_info_update_service_factory.cc

Issue 11620012: [Profiles, Fixit] Making GAIAInfoUpdateService into a ProfileKeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing RegisterUserPrefs Created 8 years 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/profiles/gaia_info_update_service_factory.h"
6
7 #include "chrome/browser/prefs/pref_service.h"
8 #include "chrome/browser/profiles/gaia_info_update_service.h"
9 #include "chrome/browser/profiles/profile_dependency_manager.h"
10 #include "chrome/common/pref_names.h"
11
12 GAIAInfoUpdateServiceFactory::GAIAInfoUpdateServiceFactory()
13 : ProfileKeyedServiceFactory("GAIAInfoUpdateService",
14 ProfileDependencyManager::GetInstance()) {
15 }
16
17 GAIAInfoUpdateServiceFactory::~GAIAInfoUpdateServiceFactory() {}
18
19 // static
20 GAIAInfoUpdateService* GAIAInfoUpdateServiceFactory::GetForProfile(
21 Profile* profile) {
22 return static_cast<GAIAInfoUpdateService*>(
23 GetInstance()->GetServiceForProfile(profile, true));
24 }
25
26 // static
27 GAIAInfoUpdateServiceFactory* GAIAInfoUpdateServiceFactory::GetInstance() {
28 return Singleton<GAIAInfoUpdateServiceFactory>::get();
29 }
30
31 ProfileKeyedService* GAIAInfoUpdateServiceFactory::BuildServiceInstanceFor(
32 Profile* profile) const {
33 if (!GAIAInfoUpdateService::ShouldUseGAIAProfileInfo(profile))
34 return NULL;
35 return new GAIAInfoUpdateService(profile);
36 }
37
38 void GAIAInfoUpdateServiceFactory::RegisterUserPrefs(PrefService* prefs) {
39 prefs->RegisterInt64Pref(
40 prefs::kProfileGAIAInfoUpdateTime, 0, PrefServiceBase::UNSYNCABLE_PREF);
41 prefs->RegisterStringPref(
42 prefs::kProfileGAIAInfoPictureURL, "", PrefServiceBase::UNSYNCABLE_PREF);
43 }
44
45 bool GAIAInfoUpdateServiceFactory::ServiceIsNULLWhileTesting() const {
46 return true;
47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698