| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_UI_COCOA_TAB_MODAL_CONFIRM_DIALOG_MAC_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_TAB_MODAL_CONFIRM_DIALOG_MAC_H_ |
| 7 #pragma once |
| 8 |
| 9 #import <Cocoa/Cocoa.h> |
| 10 |
| 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "chrome/browser/ui/cocoa/constrained_window_mac.h" |
| 13 |
| 14 class TabContentsWrapper; |
| 15 class TabModalConfirmDialogDelegate; |
| 16 |
| 17 // Displays a tab-modal dialog, i.e. a dialog that will block the current page |
| 18 // but still allow the user to switch to a different page. |
| 19 // To display the dialog, allocate this object on the heap. It will open the |
| 20 // dialog from its constructor and then delete itself when the user dismisses |
| 21 // the dialog. |
| 22 class TabModalConfirmDialogMac |
| 23 : public ConstrainedWindowMacDelegateSystemSheet { |
| 24 public: |
| 25 TabModalConfirmDialogMac(TabModalConfirmDialogDelegate* delegate, |
| 26 TabContentsWrapper* wrapper); |
| 27 |
| 28 // ConstrainedWindowDelegateMacSystemSheet methods: |
| 29 virtual void DeleteDelegate() OVERRIDE; |
| 30 |
| 31 private: |
| 32 virtual ~TabModalConfirmDialogMac(); |
| 33 |
| 34 scoped_ptr<TabModalConfirmDialogDelegate> delegate_; |
| 35 |
| 36 DISALLOW_COPY_AND_ASSIGN(TabModalConfirmDialogMac); |
| 37 }; |
| 38 |
| 39 #endif // CHROME_BROWSER_UI_COCOA_TAB_MODAL_CONFIRM_DIALOG_MAC_H_ |
| OLD | NEW |