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.
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_BROWSER_ATOM_JAVASCRIPT_DIALOG_MANAGER_H_
|
|
|
|
#define SHELL_BROWSER_ATOM_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"
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2013-04-30 15:56:50 +00:00
|
|
|
|
2017-04-28 00:28:48 +00:00
|
|
|
namespace api {
|
|
|
|
class WebContents;
|
|
|
|
}
|
|
|
|
|
2013-04-30 15:56:50 +00:00
|
|
|
class AtomJavaScriptDialogManager : public content::JavaScriptDialogManager {
|
|
|
|
public:
|
2017-04-28 00:28:48 +00:00
|
|
|
explicit AtomJavaScriptDialogManager(api::WebContents* api_web_contents);
|
2018-04-17 23:37:22 +00:00
|
|
|
~AtomJavaScriptDialogManager() 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,
|
|
|
|
const base::string16& message_text,
|
|
|
|
const base::string16& default_prompt_text,
|
|
|
|
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
|
|
|
|
2017-04-28 00:28:48 +00:00
|
|
|
api::WebContents* api_web_contents_;
|
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
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_BROWSER_ATOM_JAVASCRIPT_DIALOG_MANAGER_H_
|