// // Copyright (C) 2014 The Android Open Source Project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #ifndef UPDATE_ENGINE_UPDATE_MANAGER_DEVICE_POLICY_PROVIDER_H_ #define UPDATE_ENGINE_UPDATE_MANAGER_DEVICE_POLICY_PROVIDER_H_ #include #include #include #include #include "update_engine/update_manager/provider.h" #include "update_engine/update_manager/rollback_prefs.h" #include "update_engine/update_manager/shill_provider.h" #include "update_engine/update_manager/variable.h" #include "update_engine/update_manager/weekly_time.h" namespace chromeos_update_manager { // Provides access to the current DevicePolicy. class DevicePolicyProvider : public Provider { public: ~DevicePolicyProvider() override {} // Variable stating whether the DevicePolicy was loaded. virtual Variable* var_device_policy_is_loaded() = 0; // Variables mapping the information received on the DevicePolicy protobuf. virtual Variable* var_release_channel() = 0; virtual Variable* var_release_channel_delegated() = 0; virtual Variable* var_update_disabled() = 0; virtual Variable* var_target_version_prefix() = 0; // Variable returning what should happen if the target_version_prefix is // earlier than the current Chrome OS version. virtual Variable* var_rollback_to_target_version() = 0; // Variable returning the number of Chrome milestones rollback should be // possible. Rollback protection will be postponed by this many versions. virtual Variable* var_rollback_allowed_milestones() = 0; // Returns a non-negative scatter interval used for updates. virtual Variable* var_scatter_factor() = 0; // Variable returning the set of connection types allowed for updates. The // identifiers returned are consistent with the ones returned by the // ShillProvider. virtual Variable>* var_allowed_connection_types_for_update() = 0; // Variable stating whether the device has an owner. For enterprise enrolled // devices, this will be false as the device owner has an empty string. virtual Variable* var_has_owner() = 0; virtual Variable* var_http_downloads_enabled() = 0; virtual Variable* var_au_p2p_enabled() = 0; virtual Variable* var_allow_kiosk_app_control_chrome_version() = 0; // Variable that contains the app that is to be run when launched in kiosk // mode. If the device is not in kiosk-mode this should be empty. virtual Variable* var_auto_launched_kiosk_app_id() = 0; // Variable that contains the time intervals during the week for which update // checks are disallowed. virtual Variable* var_disallowed_time_intervals() = 0; protected: DevicePolicyProvider() {} private: DISALLOW_COPY_AND_ASSIGN(DevicePolicyProvider); }; } // namespace chromeos_update_manager #endif // UPDATE_ENGINE_UPDATE_MANAGER_DEVICE_POLICY_PROVIDER_H_