// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef HEADLESS_LIB_BROWSER_HEADLESS_PERMISSION_MANAGER_H_ #define HEADLESS_LIB_BROWSER_HEADLESS_PERMISSION_MANAGER_H_ #include "base/functional/callback_forward.h" #include "base/memory/raw_ptr.h" #include "content/public/browser/permission_controller_delegate.h" namespace blink { enum class PermissionType; } namespace content { class BrowserContext; struct PermissionResult; } namespace headless { class HeadlessPermissionManager : public content::PermissionControllerDelegate { … }; } // namespace content #endif // HEADLESS_LIB_BROWSER_HEADLESS_PERMISSION_MANAGER_H_