chromium/components/permissions/test/permission_test_util.cc

// 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.

#include "components/permissions/test/permission_test_util.h"

#include "components/content_settings/core/common/content_settings_types.h"
#include "components/permissions/contexts/window_management_permission_context.h"
#include "components/permissions/permission_manager.h"
#include "content/public/browser/browser_context.h"
#include "third_party/blink/public/mojom/permissions_policy/permissions_policy.mojom.h"

namespace permissions {
namespace {

class FakePermissionContext : public PermissionContextBase {};

class FakePermissionContextAlwaysAllow : public FakePermissionContext {};

PermissionManager::PermissionContextMap CreatePermissionContexts(
    content::BrowserContext* browser_context) {}

}  // namespace

std::unique_ptr<content::PermissionControllerDelegate>
GetPermissionControllerDelegate(content::BrowserContext* context) {}

}  // namespace permissions