Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(106)

Side by Side Diff: chrome/browser/ui/javascript_dialogs/javascript_dialog_tab_helper.h

Issue 2412843002: Simplify the JavaScriptDialogManager. (Closed)
Patch Set: braces Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_JAVASCRIPT_DIALOGS_JAVASCRIPT_DIALOG_TAB_HELPER_H_ 5 #ifndef CHROME_BROWSER_UI_JAVASCRIPT_DIALOGS_JAVASCRIPT_DIALOG_TAB_HELPER_H_
6 #define CHROME_BROWSER_UI_JAVASCRIPT_DIALOGS_JAVASCRIPT_DIALOG_TAB_HELPER_H_ 6 #define CHROME_BROWSER_UI_JAVASCRIPT_DIALOGS_JAVASCRIPT_DIALOG_TAB_HELPER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "content/public/browser/javascript_dialog_manager.h" 9 #include "content/public/browser/javascript_dialog_manager.h"
10 #include "content/public/browser/web_contents_observer.h" 10 #include "content/public/browser/web_contents_observer.h"
(...skipping 14 matching lines...) Expand all
25 const base::string16& message_text, 25 const base::string16& message_text,
26 const base::string16& default_prompt_text, 26 const base::string16& default_prompt_text,
27 const DialogClosedCallback& callback, 27 const DialogClosedCallback& callback,
28 bool* did_suppress_message) override; 28 bool* did_suppress_message) override;
29 void RunBeforeUnloadDialog(content::WebContents* web_contents, 29 void RunBeforeUnloadDialog(content::WebContents* web_contents,
30 bool is_reload, 30 bool is_reload,
31 const DialogClosedCallback& callback) override; 31 const DialogClosedCallback& callback) override;
32 bool HandleJavaScriptDialog(content::WebContents* web_contents, 32 bool HandleJavaScriptDialog(content::WebContents* web_contents,
33 bool accept, 33 bool accept,
34 const base::string16* prompt_override) override; 34 const base::string16* prompt_override) override;
35 void CancelActiveAndPendingDialogs( 35 void CancelDialogs(content::WebContents* web_contents,
36 content::WebContents* web_contents) override; 36 bool suppress_callbacks,
37 void ResetDialogState(content::WebContents* web_contents) override; 37 bool reset_state) override;
38 void WebContentsDestroyed() override; 38 void WebContentsDestroyed() override;
39 39
40 private: 40 private:
41 friend class content::WebContentsUserData<JavaScriptDialogTabHelper>; 41 friend class content::WebContentsUserData<JavaScriptDialogTabHelper>;
42 42
43 DISALLOW_COPY_AND_ASSIGN(JavaScriptDialogTabHelper); 43 DISALLOW_COPY_AND_ASSIGN(JavaScriptDialogTabHelper);
44 }; 44 };
45 45
46 #endif // CHROME_BROWSER_UI_JAVASCRIPT_DIALOGS_JAVASCRIPT_DIALOG_TAB_HELPER_H_ 46 #endif // CHROME_BROWSER_UI_JAVASCRIPT_DIALOGS_JAVASCRIPT_DIALOG_TAB_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698