2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-30 23:56:50 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 08:58:59 +08:00
|
|
|
#ifndef ATOM_BROWSER_ATOM_JAVASCRIPT_DIALOG_MANAGER_H_
|
|
|
|
#define ATOM_BROWSER_ATOM_JAVASCRIPT_DIALOG_MANAGER_H_
|
2013-04-30 23:56:50 +08:00
|
|
|
|
2018-01-10 17:07:56 +11:00
|
|
|
#include <map>
|
2018-01-24 20:45:21 -06:00
|
|
|
#include <string>
|
2014-03-16 09:13:06 +08:00
|
|
|
|
2013-04-30 23:56:50 +08:00
|
|
|
#include "content/public/browser/javascript_dialog_manager.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2017-04-27 19:28:48 -05:00
|
|
|
namespace api {
|
|
|
|
class WebContents;
|
|
|
|
}
|
|
|
|
|
2013-04-30 23:56:50 +08:00
|
|
|
class AtomJavaScriptDialogManager : public content::JavaScriptDialogManager {
|
|
|
|
public:
|
2017-04-27 19:28:48 -05:00
|
|
|
explicit AtomJavaScriptDialogManager(api::WebContents* api_web_contents);
|
|
|
|
|
2013-04-30 23:56:50 +08:00
|
|
|
// content::JavaScriptDialogManager implementations.
|
2015-01-09 17:24:36 -08:00
|
|
|
void RunJavaScriptDialog(
|
2013-04-30 23:56:50 +08:00
|
|
|
content::WebContents* web_contents,
|
|
|
|
const GURL& origin_url,
|
2017-04-04 13:50:44 +09:00
|
|
|
content::JavaScriptDialogType dialog_type,
|
2014-06-28 19:36:57 +08:00
|
|
|
const base::string16& message_text,
|
|
|
|
const base::string16& default_prompt_text,
|
2017-12-18 12:24:13 +11:00
|
|
|
DialogClosedCallback callback,
|
2015-01-09 17:24:36 -08:00
|
|
|
bool* did_suppress_message) override;
|
|
|
|
void RunBeforeUnloadDialog(
|
2013-04-30 23:56:50 +08:00
|
|
|
content::WebContents* web_contents,
|
|
|
|
bool is_reload,
|
2017-12-18 12:24:13 +11:00
|
|
|
DialogClosedCallback callback) override;
|
2017-01-24 12:18:56 +09:00
|
|
|
void CancelDialogs(content::WebContents* web_contents,
|
|
|
|
bool reset_state) override;
|
2017-01-04 16:46:50 -08:00
|
|
|
|
|
|
|
private:
|
2018-03-12 17:27:43 +09:00
|
|
|
void OnMessageBoxCallback(DialogClosedCallback callback,
|
2018-03-06 11:35:53 +09:00
|
|
|
const std::string& origin,
|
|
|
|
int code,
|
|
|
|
bool checkbox_checked);
|
2018-03-06 11:31:56 +09:00
|
|
|
|
2017-04-27 19:28:48 -05:00
|
|
|
api::WebContents* api_web_contents_;
|
2018-01-10 17:07:56 +11:00
|
|
|
std::map<std::string, int> origin_counts_;
|
2013-04-30 23:56:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2014-03-16 08:58:59 +08:00
|
|
|
#endif // ATOM_BROWSER_ATOM_JAVASCRIPT_DIALOG_MANAGER_H_
|