// Copyright 2022 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_DEVICE_SIGNALS_CORE_BROWSER_USER_PERMISSION_SERVICE_H_ #define COMPONENTS_DEVICE_SIGNALS_CORE_BROWSER_USER_PERMISSION_SERVICE_H_ #include "build/build_config.h" #include "components/keyed_service/core/keyed_service.h" namespace device_signals { struct UserContext; // Contains possible outcomes of a signals collection permission check. // These values are persisted to logs and should not be renumbered. Please // update the DeviceSignalsUserPermission enum in enums.xml when adding a new // value here. enum class UserPermission { … }; // Service that can be used to conduct permission checks on given users. The // users may represent a different user than the profile user, and so the // permission check is more exhaustive than simple consent check and involves // validating the affiliation of the user's organization. class UserPermissionService : public KeyedService { … }; } // namespace device_signals #endif // COMPONENTS_DEVICE_SIGNALS_CORE_BROWSER_USER_PERMISSION_SERVICE_H_