2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-30 15:56:50 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_ELECTRON_JAVASCRIPT_DIALOG_MANAGER_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_ELECTRON_JAVASCRIPT_DIALOG_MANAGER_H_
|
2013-04-30 15:56:50 +00:00
|
|
|
|
2018-01-10 06:07:56 +00:00
|
|
|
#include <map>
|
2018-01-25 02:45:21 +00:00
|
|
|
#include <string>
|
2014-03-16 01:13:06 +00:00
|
|
|
|
2013-04-30 15:56:50 +00:00
|
|
|
#include "content/public/browser/javascript_dialog_manager.h"
|
|
|
|
|
2021-07-02 00:51:37 +00:00
|
|
|
namespace content {
|
2017-04-28 00:28:48 +00:00
|
|
|
class WebContents;
|
|
|
|
}
|
|
|
|
|
2021-07-02 00:51:37 +00:00
|
|
|
namespace electron {
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
class ElectronJavaScriptDialogManager
|
|
|
|
: public content::JavaScriptDialogManager {
|
2013-04-30 15:56:50 +00:00
|
|
|
public:
|
2020-07-16 23:16:05 +00:00
|
|
|
ElectronJavaScriptDialogManager();
|
2020-02-04 20:19:40 +00:00
|
|
|
~ElectronJavaScriptDialogManager() override;
|
2017-04-28 00:28:48 +00:00
|
|
|
|
2013-04-30 15:56:50 +00:00
|
|
|
// content::JavaScriptDialogManager implementations.
|
2018-04-18 01:44:10 +00:00
|
|
|
void RunJavaScriptDialog(content::WebContents* web_contents,
|
2018-04-12 07:48:34 +00:00
|
|
|
content::RenderFrameHost* rfh,
|
2018-04-18 01:44:10 +00:00
|
|
|
content::JavaScriptDialogType dialog_type,
|
2021-03-16 16:18:45 +00:00
|
|
|
const std::u16string& message_text,
|
|
|
|
const std::u16string& default_prompt_text,
|
2018-04-18 01:44:10 +00:00
|
|
|
DialogClosedCallback callback,
|
|
|
|
bool* did_suppress_message) override;
|
|
|
|
void RunBeforeUnloadDialog(content::WebContents* web_contents,
|
2018-04-12 07:48:34 +00:00
|
|
|
content::RenderFrameHost* rfh,
|
2018-04-18 01:44:10 +00:00
|
|
|
bool is_reload,
|
|
|
|
DialogClosedCallback callback) override;
|
2017-01-24 03:18:56 +00:00
|
|
|
void CancelDialogs(content::WebContents* web_contents,
|
|
|
|
bool reset_state) override;
|
2017-01-05 00:46:50 +00:00
|
|
|
|
|
|
|
private:
|
2018-03-12 08:27:43 +00:00
|
|
|
void OnMessageBoxCallback(DialogClosedCallback callback,
|
2018-03-06 02:35:53 +00:00
|
|
|
const std::string& origin,
|
|
|
|
int code,
|
|
|
|
bool checkbox_checked);
|
2018-03-06 02:31:56 +00:00
|
|
|
|
2018-01-10 06:07:56 +00:00
|
|
|
std::map<std::string, int> origin_counts_;
|
2013-04-30 15:56:50 +00:00
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2013-04-30 15:56:50 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_ELECTRON_JAVASCRIPT_DIALOG_MANAGER_H_
|