| 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_WEBUI_TAB_MODAL_CONFIRM_DIALOG_WEBUI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_TAB_MODAL_CONFIRM_DIALOG_WEBUI_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_TAB_MODAL_CONFIRM_DIALOG_WEBUI_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_TAB_MODAL_CONFIRM_DIALOG_WEBUI_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #if !(defined(USE_AURA) || defined(OS_CHROMEOS)) | 9 #if !(defined(USE_AURA) || defined(OS_CHROMEOS)) |
| 10 #error Tab-modal confirm dialog should be shown with native UI. | 10 #error Tab-modal confirm dialog should be shown with native UI. |
| 11 #endif | 11 #endif |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "ui/web_dialogs/web_dialog_delegate.h" | 15 #include "ui/web_dialogs/web_dialog_delegate.h" |
| 16 | 16 |
| 17 class TabContentsWrapper; | 17 class TabContents; |
| 18 typedef TabContents TabContentsWrapper; |
| 18 class TabModalConfirmDialogDelegate; | 19 class TabModalConfirmDialogDelegate; |
| 19 | 20 |
| 20 namespace ui { | 21 namespace ui { |
| 21 class ConstrainedWebDialogDelegate; | 22 class ConstrainedWebDialogDelegate; |
| 22 } | 23 } |
| 23 | 24 |
| 24 // Displays a tab-modal dialog, i.e. a dialog that will block the current page | 25 // Displays a tab-modal dialog, i.e. a dialog that will block the current page |
| 25 // but still allow the user to switch to a different page. | 26 // but still allow the user to switch to a different page. |
| 26 // To display the dialog, allocate this object on the heap. It will open the | 27 // To display the dialog, allocate this object on the heap. It will open the |
| 27 // dialog from its constructor and then delete itself when the user dismisses | 28 // dialog from its constructor and then delete itself when the user dismisses |
| (...skipping 26 matching lines...) Expand all Loading... |
| 54 | 55 |
| 55 scoped_ptr<TabModalConfirmDialogDelegate> delegate_; | 56 scoped_ptr<TabModalConfirmDialogDelegate> delegate_; |
| 56 | 57 |
| 57 // Deletes itself. | 58 // Deletes itself. |
| 58 ui::ConstrainedWebDialogDelegate* constrained_web_dialog_delegate_; | 59 ui::ConstrainedWebDialogDelegate* constrained_web_dialog_delegate_; |
| 59 | 60 |
| 60 DISALLOW_COPY_AND_ASSIGN(TabModalConfirmDialogWebUI); | 61 DISALLOW_COPY_AND_ASSIGN(TabModalConfirmDialogWebUI); |
| 61 }; | 62 }; |
| 62 | 63 |
| 63 #endif // CHROME_BROWSER_UI_WEBUI_TAB_MODAL_CONFIRM_DIALOG_WEBUI_H_ | 64 #endif // CHROME_BROWSER_UI_WEBUI_TAB_MODAL_CONFIRM_DIALOG_WEBUI_H_ |
| OLD | NEW |