chromium/chrome/browser/ui/views/permissions/embedded_permission_prompt_ask_view.h

// 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 CHROME_BROWSER_UI_VIEWS_PERMISSIONS_EMBEDDED_PERMISSION_PROMPT_ASK_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_PERMISSIONS_EMBEDDED_PERMISSION_PROMPT_ASK_VIEW_H_
#include <string>

#include "chrome/browser/ui/views/permissions/embedded_permission_prompt_base_view.h"
#include "ui/base/metadata/metadata_header_macros.h"

class Browser;

// View that prompts the user to grant or deny a permission request from one
// origin when the user has not previously made a decision.
class EmbeddedPermissionPromptAskView
    : public EmbeddedPermissionPromptBaseView {};

#endif  // CHROME_BROWSER_UI_VIEWS_PERMISSIONS_EMBEDDED_PERMISSION_PROMPT_ASK_VIEW_H_