// 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 CONTENT_BROWSER_MEDIA_MEDIA_LICENSE_QUOTA_CLIENT_H_ #define CONTENT_BROWSER_MEDIA_MEDIA_LICENSE_QUOTA_CLIENT_H_ #include "components/services/storage/public/mojom/quota_client.mojom.h" #include "content/common/content_export.h" namespace content { class MediaLicenseManager; // Integrates media licenses with the quota system. // // Each MediaLicenseManager owns exactly one MediaLicenseQuotaClient. class CONTENT_EXPORT MediaLicenseQuotaClient : public storage::mojom::QuotaClient { … }; } // namespace content #endif // CONTENT_BROWSER_MEDIA_MEDIA_LICENSE_QUOTA_CLIENT_H_