// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/enterprise/browser/reporting/common_pref_names.h" namespace enterprise_reporting { // Boolean that indicates whether Chrome enterprise cloud reporting is enabled // or not. const char kCloudReportingEnabled[] = …; // Boolean that indicates whether Chrome enterprise profile cloud reporting is // enabled or not. const char kCloudProfileReportingEnabled[] = …; // The timestamp of the last enterprise report upload. const char kLastUploadTimestamp[] = …; // The timestamp of the last enterprise report upload is succeeded. const char kLastUploadSucceededTimestamp[] = …; // The report frequency const char kCloudReportingUploadFrequency[] = …; } // namespace enterprise_reporting