| 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 "components/policy/core/browser/configuration_policy_handler.h" | 5 #include "components/policy/core/browser/configuration_policy_handler.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <utility> | 10 #include <utility> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 14 #include "base/logging.h" | 14 #include "base/logging.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/ptr_util.h" | 16 #include "base/memory/ptr_util.h" |
| 17 #include "base/strings/string16.h" | 17 #include "base/strings/string16.h" |
| 18 #include "base/strings/string_number_conversions.h" | 18 #include "base/strings/string_number_conversions.h" |
| 19 #include "base/strings/string_util.h" | 19 #include "base/strings/string_util.h" |
| 20 #include "components/policy/core/browser/policy_error_map.h" | 20 #include "components/policy/core/browser/policy_error_map.h" |
| 21 #include "components/policy/core/common/policy_map.h" | 21 #include "components/policy/core/common/policy_map.h" |
| 22 #include "components/prefs/pref_value_map.h" | 22 #include "components/prefs/pref_value_map.h" |
| 23 #include "grit/components_strings.h" | 23 #include "components/strings/grit/components_strings.h" |
| 24 #include "url/gurl.h" | 24 #include "url/gurl.h" |
| 25 | 25 |
| 26 namespace policy { | 26 namespace policy { |
| 27 | 27 |
| 28 // ConfigurationPolicyHandler implementation ----------------------------------- | 28 // ConfigurationPolicyHandler implementation ----------------------------------- |
| 29 | 29 |
| 30 ConfigurationPolicyHandler::ConfigurationPolicyHandler() { | 30 ConfigurationPolicyHandler::ConfigurationPolicyHandler() { |
| 31 } | 31 } |
| 32 | 32 |
| 33 ConfigurationPolicyHandler::~ConfigurationPolicyHandler() { | 33 ConfigurationPolicyHandler::~ConfigurationPolicyHandler() { |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 } | 452 } |
| 453 } | 453 } |
| 454 | 454 |
| 455 void LegacyPoliciesDeprecatingPolicyHandler::ApplyPolicySettings( | 455 void LegacyPoliciesDeprecatingPolicyHandler::ApplyPolicySettings( |
| 456 const policy::PolicyMap& /* policies */, | 456 const policy::PolicyMap& /* policies */, |
| 457 PrefValueMap* /* prefs */) { | 457 PrefValueMap* /* prefs */) { |
| 458 NOTREACHED(); | 458 NOTREACHED(); |
| 459 } | 459 } |
| 460 | 460 |
| 461 } // namespace policy | 461 } // namespace policy |
| OLD | NEW |