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

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 permissions Created 7 years, 11 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 | 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_syncable.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(
39 PrefServiceSyncable* prefs) {
40 prefs->RegisterInt64Pref(prefs::kProfileGAIAInfoUpdateTime, 0,
41 PrefServiceSyncable::UNSYNCABLE_PREF);
42 prefs->RegisterStringPref(prefs::kProfileGAIAInfoPictureURL, "",
43 PrefServiceSyncable::UNSYNCABLE_PREF);
44 }
45
46 bool GAIAInfoUpdateServiceFactory::ServiceIsNULLWhileTesting() const {
47 return true;
48 }
OLDNEW
« no previous file with comments | « chrome/browser/profiles/gaia_info_update_service_factory.h ('k') | chrome/browser/profiles/off_the_record_profile_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698