~oxide-developers/oxide/oxide.trunk

« back to all changes in this revision

Viewing changes to shared/browser/oxide_javascript_dialog.h

  • Committer: Olivier Tilloy
  • Date: 2014-03-25 22:56:41 UTC
  • mfrom: (263.1.52 js-dialogs)
  • Revision ID: olivier.tilloy@canonical.com-20140325225641-qj27u83unhi4xkw6
Implement the JavaScriptDialogManager interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// vim:expandtab:shiftwidth=2:tabstop=2:
 
2
// Copyright (C) 2014 Canonical Ltd.
 
3
 
 
4
// This library is free software; you can redistribute it and/or
 
5
// modify it under the terms of the GNU Lesser General Public
 
6
// License as published by the Free Software Foundation; either
 
7
// version 2.1 of the License, or (at your option) any later version.
 
8
 
 
9
// This library is distributed in the hope that it will be useful,
 
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
// Lesser General Public License for more details.
 
13
 
 
14
// You should have received a copy of the GNU Lesser General Public
 
15
// License along with this library; if not, write to the Free Software
 
16
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 
 
18
#ifndef _OXIDE_SHARED_BROWSER_JAVASCRIPT_DIALOG_H_
 
19
#define _OXIDE_SHARED_BROWSER_JAVASCRIPT_DIALOG_H_
 
20
 
 
21
#include "content/public/browser/javascript_dialog_manager.h"
 
22
 
 
23
namespace oxide {
 
24
 
 
25
class JavaScriptDialog {
 
26
 public:
 
27
  virtual ~JavaScriptDialog();
 
28
 
 
29
  virtual void Run() = 0;
 
30
  void Close(bool accept, const base::string16& user_input = base::string16());
 
31
  void CouldNotShow();
 
32
  virtual void Handle(bool accept, const base::string16* prompt_override) = 0;
 
33
  void Cancel();
 
34
 
 
35
 protected:
 
36
  friend class JavaScriptDialogManager;
 
37
 
 
38
  JavaScriptDialog();
 
39
 
 
40
  GURL origin_url_;
 
41
  std::string accept_lang_;
 
42
  base::string16 message_text_;
 
43
  base::string16 default_prompt_text_;
 
44
  bool is_reload_;
 
45
  bool is_before_unload_dialog_;
 
46
 
 
47
private:
 
48
  content::WebContents* web_contents_;
 
49
  content::JavaScriptDialogManager::DialogClosedCallback callback_;
 
50
};
 
51
 
 
52
} // namespace oxide
 
53
 
 
54
#endif // _OXIDE_SHARED_BROWSER_JAVASCRIPT_DIALOG_H_