// Copyright 2023 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_CAPTURED_SURFACE_CONTROL_PERMISSION_MANAGER_H_ #define CONTENT_BROWSER_MEDIA_CAPTURED_SURFACE_CONTROL_PERMISSION_MANAGER_H_ #include "base/functional/callback.h" #include "base/memory/weak_ptr.h" #include "content/common/content_export.h" #include "content/public/browser/global_routing_id.h" namespace content { // Encapsulates the permission state and logic associated with the Captured // Surface Control API. Objects of this class live on the IO thread. class CONTENT_EXPORT CapturedSurfaceControlPermissionManager { … }; } // namespace content #endif // CONTENT_BROWSER_MEDIA_CAPTURED_SURFACE_CONTROL_PERMISSION_MANAGER_H_