| 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/chromeos/policy/device_policy_decoder_chromeos.h" | 5 #include "chrome/browser/chromeos/policy/device_policy_decoder_chromeos.h" |
| 6 | 6 |
| 7 #include <limits> | 7 #include <limits> |
| 8 | 8 |
| 9 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/values.h" | 11 #include "base/values.h" |
| 12 #include "chrome/browser/chromeos/policy/device_local_account.h" | 12 #include "chrome/browser/chromeos/policy/device_local_account.h" |
| 13 #include "chrome/browser/chromeos/policy/enterprise_install_attributes.h" | 13 #include "chrome/browser/chromeos/policy/enterprise_install_attributes.h" |
| 14 #include "chrome/browser/policy/external_data_fetcher.h" | |
| 15 #include "chrome/browser/policy/policy_map.h" | |
| 16 #include "chrome/browser/policy/proto/chromeos/chrome_device_policy.pb.h" | 14 #include "chrome/browser/policy/proto/chromeos/chrome_device_policy.pb.h" |
| 17 #include "chromeos/dbus/dbus_thread_manager.h" | 15 #include "chromeos/dbus/dbus_thread_manager.h" |
| 18 #include "chromeos/dbus/update_engine_client.h" | 16 #include "chromeos/dbus/update_engine_client.h" |
| 19 #include "chromeos/settings/cros_settings_names.h" | 17 #include "chromeos/settings/cros_settings_names.h" |
| 18 #include "components/policy/core/common/external_data_fetcher.h" |
| 19 #include "components/policy/core/common/policy_map.h" |
| 20 #include "policy/policy_constants.h" | 20 #include "policy/policy_constants.h" |
| 21 #include "third_party/cros_system_api/dbus/service_constants.h" | 21 #include "third_party/cros_system_api/dbus/service_constants.h" |
| 22 | 22 |
| 23 using google::protobuf::RepeatedField; | 23 using google::protobuf::RepeatedField; |
| 24 using google::protobuf::RepeatedPtrField; | 24 using google::protobuf::RepeatedPtrField; |
| 25 | 25 |
| 26 namespace em = enterprise_management; | 26 namespace em = enterprise_management; |
| 27 | 27 |
| 28 namespace policy { | 28 namespace policy { |
| 29 | 29 |
| (...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 DecodeLoginPolicies(policy, policies); | 705 DecodeLoginPolicies(policy, policies); |
| 706 DecodeKioskPolicies(policy, policies, install_attributes); | 706 DecodeKioskPolicies(policy, policies, install_attributes); |
| 707 DecodeNetworkPolicies(policy, policies, install_attributes); | 707 DecodeNetworkPolicies(policy, policies, install_attributes); |
| 708 DecodeReportingPolicies(policy, policies); | 708 DecodeReportingPolicies(policy, policies); |
| 709 DecodeAutoUpdatePolicies(policy, policies); | 709 DecodeAutoUpdatePolicies(policy, policies); |
| 710 DecodeAccessibilityPolicies(policy, policies); | 710 DecodeAccessibilityPolicies(policy, policies); |
| 711 DecodeGenericPolicies(policy, policies); | 711 DecodeGenericPolicies(policy, policies); |
| 712 } | 712 } |
| 713 | 713 |
| 714 } // namespace policy | 714 } // namespace policy |
| OLD | NEW |