chromium/content/public/browser/permission_overrides.h

// Copyright 2019 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_PUBLIC_BROWSER_PERMISSION_OVERRIDES_H_
#define CONTENT_PUBLIC_BROWSER_PERMISSION_OVERRIDES_H_

#include <optional>
#include <vector>

#include "base/containers/flat_map.h"
#include "content/common/content_export.h"
#include "third_party/blink/public/mojom/permissions/permission_status.mojom.h"
#include "url/origin.h"

namespace blink {
enum class PermissionType;
}

namespace content {

// Maintains permission overrides for each origin.
class CONTENT_EXPORT PermissionOverrides {};

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_PERMISSION_OVERRIDES_H_