electron/shell/browser/atom_javascript_dialog_manager.h

52 lines
1.8 KiB
C
Raw Normal View History

// 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
// found in the LICENSE file.
2014-03-16 00:58:59 +00:00
#ifndef ATOM_BROWSER_ATOM_JAVASCRIPT_DIALOG_MANAGER_H_
#define ATOM_BROWSER_ATOM_JAVASCRIPT_DIALOG_MANAGER_H_
#include <map>
#include <string>
#include "content/public/browser/javascript_dialog_manager.h"
namespace atom {
2017-04-28 00:28:48 +00:00
namespace api {
class WebContents;
}
class AtomJavaScriptDialogManager : public content::JavaScriptDialogManager {
public:
2017-04-28 00:28:48 +00:00
explicit AtomJavaScriptDialogManager(api::WebContents* api_web_contents);
~AtomJavaScriptDialogManager() override;
2017-04-28 00:28:48 +00:00
// content::JavaScriptDialogManager implementations.
2018-04-18 01:44:10 +00:00
void RunJavaScriptDialog(content::WebContents* web_contents,
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,
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;
private:
void OnMessageBoxCallback(DialogClosedCallback callback,
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_;
std::map<std::string, int> origin_counts_;
};
} // namespace atom
2014-03-16 00:58:59 +00:00
#endif // ATOM_BROWSER_ATOM_JAVASCRIPT_DIALOG_MANAGER_H_