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

Side by Side Diff: chrome/browser/managed_mode/managed_user_shared_settings_service_factory.cc

Issue 123293003: Add ManagedUserSharedSettingsService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comment Created 6 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 2013 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/managed_mode/managed_user_shared_settings_service_facto ry.h"
6
7 #include "chrome/browser/managed_mode/managed_user_shared_settings_service.h"
8 #include "components/browser_context_keyed_service/browser_context_dependency_ma nager.h"
9 #include "components/user_prefs/user_prefs.h"
10 #include "content/public/browser/browser_context.h"
11
12 // static
13 ManagedUserSharedSettingsService*
14 ManagedUserSharedSettingsServiceFactory::GetForBrowserContext(
15 content::BrowserContext* profile) {
16 return static_cast<ManagedUserSharedSettingsService*>(
17 GetInstance()->GetServiceForBrowserContext(profile, true));
18 }
19
20 // static
21 ManagedUserSharedSettingsServiceFactory*
22 ManagedUserSharedSettingsServiceFactory::GetInstance() {
23 return Singleton<ManagedUserSharedSettingsServiceFactory>::get();
24 }
25
26 ManagedUserSharedSettingsServiceFactory::
27 ManagedUserSharedSettingsServiceFactory()
28 : BrowserContextKeyedServiceFactory(
29 "ManagedUserSharedSettingsService",
30 BrowserContextDependencyManager::GetInstance()) {}
31
32 ManagedUserSharedSettingsServiceFactory::
33 ~ManagedUserSharedSettingsServiceFactory() {}
34
35 BrowserContextKeyedService*
36 ManagedUserSharedSettingsServiceFactory::BuildServiceInstanceFor(
37 content::BrowserContext* profile) const {
38 return new ManagedUserSharedSettingsService(
39 user_prefs::UserPrefs::Get(profile));
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698