OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/profile_policy_connector.h" | 5 #include "chrome/browser/policy/profile_policy_connector.h" |
6 | 6 |
7 #include "components/policy/core/common/policy_service_stub.h" | 7 #include "components/policy/core/common/policy_service_stub.h" |
8 | 8 |
9 namespace policy { | 9 namespace policy { |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 void ProfilePolicyConnector::Shutdown() {} | 26 void ProfilePolicyConnector::Shutdown() {} |
27 | 27 |
28 bool ProfilePolicyConnector::IsManaged() const { | 28 bool ProfilePolicyConnector::IsManaged() const { |
29 return false; | 29 return false; |
30 } | 30 } |
31 | 31 |
32 std::string ProfilePolicyConnector::GetManagementDomain() const { | 32 std::string ProfilePolicyConnector::GetManagementDomain() const { |
33 return ""; | 33 return ""; |
34 } | 34 } |
35 | 35 |
| 36 bool ProfilePolicyConnector::IsPolicyFromCloudPolicy(const char* name) const { |
| 37 return false; |
| 38 } |
| 39 |
36 } // namespace policy | 40 } // namespace policy |
OLD | NEW |