OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BROWSER_DIALOGS_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ |
6 #define CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/ui/dialog_style.h" | 9 #include "chrome/browser/ui/dialog_style.h" |
10 #include "ipc/ipc_message.h" | 10 #include "ipc/ipc_message.h" |
11 #include "ui/gfx/native_widget_types.h" | 11 #include "ui/gfx/native_widget_types.h" |
12 | 12 |
13 class Browser; | 13 class Browser; |
14 class Extension; | 14 class Extension; |
15 class HtmlDialogUIDelegate; | 15 class HtmlDialogUIDelegate; |
16 class Profile; | 16 class Profile; |
17 class SkBitmap; | 17 class SkBitmap; |
18 class TabContents; | |
19 class TabContentsWrapper; | 18 class TabContentsWrapper; |
20 class TabModalConfirmDialogDelegate; | 19 class TabModalConfirmDialogDelegate; |
21 class TemplateURL; | 20 class TemplateURL; |
22 | 21 |
23 namespace content { | 22 namespace content { |
24 class WebContents; | 23 class WebContents; |
25 } | 24 } |
26 | 25 |
27 namespace browser { | 26 namespace browser { |
28 | 27 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 void ShowHungRendererDialog(content::WebContents* contents); | 70 void ShowHungRendererDialog(content::WebContents* contents); |
72 void HideHungRendererDialog(content::WebContents* contents); | 71 void HideHungRendererDialog(content::WebContents* contents); |
73 | 72 |
74 // Shows a tab-modal dialog box. | 73 // Shows a tab-modal dialog box. |
75 void ShowTabModalConfirmDialog(TabModalConfirmDialogDelegate* delegate, | 74 void ShowTabModalConfirmDialog(TabModalConfirmDialogDelegate* delegate, |
76 TabContentsWrapper* wrapper); | 75 TabContentsWrapper* wrapper); |
77 | 76 |
78 } // namespace browser | 77 } // namespace browser |
79 | 78 |
80 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ | 79 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ |
OLD | NEW |