OLD | NEW |
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/user_cloud_policy_store.h" | 5 #include "chrome/browser/policy/user_cloud_policy_store.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "chrome/browser/policy/proto/cloud_policy.pb.h" | 8 #include "chrome/browser/policy/proto/cloud_policy.pb.h" |
9 #include "chrome/browser/signin/signin_manager.h" | 9 #include "chrome/browser/signin/signin_manager.h" |
10 #include "chrome/browser/signin/signin_manager_factory.h" | 10 #include "chrome/browser/signin/signin_manager_factory.h" |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 NotifyStoreLoaded(); | 70 NotifyStoreLoaded(); |
71 } | 71 } |
72 | 72 |
73 // static | 73 // static |
74 scoped_ptr<CloudPolicyStore> CloudPolicyStore::CreateUserPolicyStore( | 74 scoped_ptr<CloudPolicyStore> CloudPolicyStore::CreateUserPolicyStore( |
75 Profile* profile) { | 75 Profile* profile) { |
76 return scoped_ptr<CloudPolicyStore>(new UserCloudPolicyStore(profile)); | 76 return scoped_ptr<CloudPolicyStore>(new UserCloudPolicyStore(profile)); |
77 } | 77 } |
78 | 78 |
79 } // namespace policy | 79 } // namespace policy |
OLD | NEW |