| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2015 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/chromeos/platform_keys/policy_handlers.h" |
| 6 |
| 7 #include "policy/policy_constants.h" |
| 8 |
| 9 namespace chromeos { |
| 10 |
| 11 KeyPermissionsPolicyHandler::KeyPermissionsPolicyHandler( |
| 12 const policy::Schema& chrome_schema) |
| 13 : policy::SchemaValidatingPolicyHandler( |
| 14 policy::key::kKeyPermissions, |
| 15 chrome_schema.GetKnownProperty(policy::key::kKeyPermissions), |
| 16 policy::SCHEMA_ALLOW_UNKNOWN) { |
| 17 } |
| 18 |
| 19 KeyPermissionsPolicyHandler::~KeyPermissionsPolicyHandler() { |
| 20 } |
| 21 |
| 22 void KeyPermissionsPolicyHandler::ApplyPolicySettings( |
| 23 const policy::PolicyMap& /* policies */, |
| 24 PrefValueMap* /* prefs */) { |
| 25 } |
| 26 |
| 27 } // namespace chromeos |
| OLD | NEW |