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_COCOA_CONFIRM_BUBBLE_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_CONFIRM_BUBBLE_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_COCOA_CONFIRM_BUBBLE_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_CONFIRM_BUBBLE_CONTROLLER_H_ |
7 | 7 |
8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 17 matching lines...) Expand all Loading... |
28 origin:(CGPoint)origin | 28 origin:(CGPoint)origin |
29 model:(scoped_ptr<ConfirmBubbleModel>)model; | 29 model:(scoped_ptr<ConfirmBubbleModel>)model; |
30 | 30 |
31 // Access to the properties of the ConfirmBubbleModel object. These functions | 31 // Access to the properties of the ConfirmBubbleModel object. These functions |
32 // also converts C++ types returned by the ConfirmBubbleModel object to | 32 // also converts C++ types returned by the ConfirmBubbleModel object to |
33 // Objective-C types. | 33 // Objective-C types. |
34 - (NSPoint)origin; | 34 - (NSPoint)origin; |
35 - (NSString*)title; | 35 - (NSString*)title; |
36 - (NSString*)messageText; | 36 - (NSString*)messageText; |
37 - (NSString*)linkText; | 37 - (NSString*)linkText; |
| 38 - (NSString*)linkURL; |
38 - (NSString*)okButtonText; | 39 - (NSString*)okButtonText; |
39 - (NSString*)cancelButtonText; | 40 - (NSString*)cancelButtonText; |
40 - (BOOL)hasOkButton; | 41 - (BOOL)hasOkButton; |
41 - (BOOL)hasCancelButton; | 42 - (BOOL)hasCancelButton; |
42 | 43 |
43 // Handle actions from the ConfirmBubbleCocoa objet. | 44 // Handle actions from the ConfirmBubbleCocoa objet. |
44 - (void)accept; | 45 - (void)accept; |
45 - (void)cancel; | 46 - (void)cancel; |
46 - (void)linkClicked; | 47 - (void)linkClicked; |
47 | 48 |
48 @end | 49 @end |
49 | 50 |
50 #endif // CHROME_BROWSER_UI_COCOA_CONFIRM_BUBBLE_CONTROLLER_H_ | 51 #endif // CHROME_BROWSER_UI_COCOA_CONFIRM_BUBBLE_CONTROLLER_H_ |
OLD | NEW |