| 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 UI_WEB_DIALOGS_CONSTRAINED_WEB_DIALOG_UI_H_ | 5 #ifndef UI_WEB_DIALOGS_CONSTRAINED_WEB_DIALOG_UI_H_ |
| 6 #define UI_WEB_DIALOGS_CONSTRAINED_WEB_DIALOG_UI_H_ | 6 #define UI_WEB_DIALOGS_CONSTRAINED_WEB_DIALOG_UI_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "content/public/browser/web_ui_controller.h" | 10 #include "content/public/browser/web_ui_controller.h" |
| 11 #include "ui/web_dialogs/web_dialogs_export.h" | 11 #include "ui/web_dialogs/web_dialogs_export.h" |
| 12 | 12 |
| 13 class ConstrainedWindow; | 13 class ConstrainedWindow; |
| 14 class Profile; | 14 class Profile; |
| 15 class TabContentsWrapper; | 15 class TabContents; |
| 16 typedef TabContents TabContentsWrapper; |
| 16 class WebDialogWebContentsDelegate; | 17 class WebDialogWebContentsDelegate; |
| 17 | 18 |
| 18 namespace base { | 19 namespace base { |
| 19 template<class T> class PropertyAccessor; | 20 template<class T> class PropertyAccessor; |
| 20 } | 21 } |
| 21 | 22 |
| 22 namespace content { | 23 namespace content { |
| 23 class RenderViewHost; | 24 class RenderViewHost; |
| 24 } | 25 } |
| 25 | 26 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 // |overshadowed| is the tab being overshadowed by the dialog. | 98 // |overshadowed| is the tab being overshadowed by the dialog. |
| 98 ConstrainedWebDialogDelegate* CreateConstrainedWebDialog( | 99 ConstrainedWebDialogDelegate* CreateConstrainedWebDialog( |
| 99 Profile* profile, | 100 Profile* profile, |
| 100 WebDialogDelegate* delegate, | 101 WebDialogDelegate* delegate, |
| 101 WebDialogWebContentsDelegate* tab_delegate, | 102 WebDialogWebContentsDelegate* tab_delegate, |
| 102 TabContentsWrapper* overshadowed); | 103 TabContentsWrapper* overshadowed); |
| 103 | 104 |
| 104 } // namespace ui | 105 } // namespace ui |
| 105 | 106 |
| 106 #endif // UI_WEB_DIALOGS_CONSTRAINED_WEB_DIALOG_UI_H_ | 107 #endif // UI_WEB_DIALOGS_CONSTRAINED_WEB_DIALOG_UI_H_ |
| OLD | NEW |