blob: cb8944c601de82b1fb77d4433b680d492928cc64 [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 "third_party/abseil-cpp/absl/types/optional.h"
#include "ui/gfx/native_widget_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,
absl::optional<views::Widget::InitParams> extra_params,
bool show = true);
} // namespace chrome
#endif // CHROME_BROWSER_UI_VIEWS_CHROME_WEB_DIALOG_VIEW_H_