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

Side by Side Diff: chrome/browser/policy/profile_policy_connector_factory.cc

Issue 6979011: Move user cloud policy to BrowserProcess. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 /*
6 TODO(sfeuz): Throw away.
7
5 #include "chrome/browser/policy/profile_policy_connector_factory.h" 8 #include "chrome/browser/policy/profile_policy_connector_factory.h"
6 9
7 #include "chrome/browser/policy/profile_policy_connector.h" 10 #include "chrome/browser/policy/profile_policy_connector.h"
8 #include "chrome/browser/profiles/profile.h" 11 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/browser/profiles/profile_dependency_manager.h" 12 #include "chrome/browser/profiles/profile_dependency_manager.h"
10 13
11 namespace policy { 14 namespace policy {
12 15
13 // static 16 // static
14 ProfilePolicyConnector* ProfilePolicyConnectorFactory::GetForProfile( 17 ProfilePolicyConnector* ProfilePolicyConnectorFactory::GetForProfile(
(...skipping 17 matching lines...) Expand all
32 35
33 ProfilePolicyConnectorFactory::~ProfilePolicyConnectorFactory() { 36 ProfilePolicyConnectorFactory::~ProfilePolicyConnectorFactory() {
34 } 37 }
35 38
36 ProfileKeyedService* ProfilePolicyConnectorFactory::BuildServiceInstanceFor( 39 ProfileKeyedService* ProfilePolicyConnectorFactory::BuildServiceInstanceFor(
37 Profile* profile) const { 40 Profile* profile) const {
38 return new ProfilePolicyConnector(profile); 41 return new ProfilePolicyConnector(profile);
39 } 42 }
40 43
41 } // namespace policy 44 } // namespace policy
45 */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698