// 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. #ifndef COMPONENTS_PERMISSIONS_PERMISSION_AUDITING_DATABASE_H_ #define COMPONENTS_PERMISSIONS_PERMISSION_AUDITING_DATABASE_H_ #include <optional> #include <vector> #include "base/time/time.h" #include "components/content_settings/core/common/content_settings_types.h" #include "components/permissions/permission_usage_session.h" #include "sql/database.h" #include "url/origin.h" namespace base { class FilePath; } // namespace base namespace permissions { // Stores permission usage sessions for specific url origin and // ContentSettingType in an SQLite database. Additionally, handles the queries // about the last permission usage time for a specific origin. // Threading constraints: // 1) This class is not thread-safe, so each instance must be used on the same // sequence; // 2) Instances must be used on a sequence that can execute blocking tasks. class PermissionAuditingDatabase { … }; } // namespace permissions #endif // COMPONENTS_PERMISSIONS_PERMISSION_AUDITING_DATABASE_H_