[email protected] | de7d61ff | 2013-08-20 11:30:41 | [diff] [blame] | 1 | // Copyright 2013 The Chromium Authors. All rights reserved. |
[email protected] | 7fc8382 | 2012-03-30 19:53:29 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
[email protected] | de7d61ff | 2013-08-20 11:30:41 | [diff] [blame] | 5 | #include "content/shell/browser/shell_javascript_dialog.h" |
[email protected] | 7fc8382 | 2012-03-30 19:53:29 | [diff] [blame] | 6 | |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 7 | #include <utility> |
8 | |||||
[email protected] | 21aa9968 | 2013-06-11 07:17:01 | [diff] [blame] | 9 | #include "base/strings/string_util.h" |
Jan Wilken Dörrie | 8606989 | 2021-02-23 17:09:13 | [diff] [blame] | 10 | #include "base/strings/utf_string_conversions.h" |
[email protected] | 993951d | 2013-05-08 21:37:02 | [diff] [blame] | 11 | #include "content/shell/app/resource.h" |
[email protected] | de7d61ff | 2013-08-20 11:30:41 | [diff] [blame] | 12 | #include "content/shell/browser/shell.h" |
13 | #include "content/shell/browser/shell_javascript_dialog_manager.h" | ||||
[email protected] | 7fc8382 | 2012-03-30 19:53:29 | [diff] [blame] | 14 | |
15 | namespace content { | ||||
16 | |||||
17 | class ShellJavaScriptDialog; | ||||
18 | |||||
[email protected] | be2510c0 | 2012-05-28 14:52:14 | [diff] [ |