blob: 35d225558a47fb691cabd47dee4ec97594ee42a2 [file] [log] [blame]
// Copyright 2018 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_CHROME_WEB_DIALOG_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_CHROME_WEB_DIALOG_VIEW_H_
#include <optional>
#include "ui/gfx/native_ui_types.h"
#include "ui/views/widget/widget.h"
namespace content {
class BrowserContext;
}
namespace ui {
class WebDialogDelegate;
}
namespace chrome {
// Views specific implementation allows extra InitParams.
gfx::NativeWindow ShowWebDialogWithParams(
gfx::NativeView parent,
content::BrowserContext* context,
ui::WebDialogDelegate* delegate,
std::optional<views::Widget::InitParams> extra_params,
bool show = true);
} // namespace chrome
#endif // CHROME_BROWSER_UI_VIEWS_CHROME_WEB_DIALOG_VIEW_H_