// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_ENTERPRISE_BROWSER_REPORTING_CLOUD_REPORTING_POLICY_HANDLER_H_ #define COMPONENTS_ENTERPRISE_BROWSER_REPORTING_CLOUD_REPORTING_POLICY_HANDLER_H_ #include "components/policy/core/browser/configuration_policy_handler.h" namespace enterprise_reporting { // Sets prefs for policy CloudReportingEnabled policy. // // Show an error message iff the machine is not enrolled with the Chrome Browser // Cloud Management when this policy is applied. class CloudReportingPolicyHandler : public policy::TypeCheckingPolicyHandler { … }; } // namespace enterprise_reporting #endif // COMPONENTS_ENTERPRISE_BROWSER_REPORTING_CLOUD_REPORTING_POLICY_HANDLER_H_