Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: chrome/browser/ui/cocoa/tab_modal_confirm_dialog_mac.h

Issue 8986005: Reland r114898: Add TabModalConfirmDialogDelegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix and cleanup Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698