OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #import <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
6 | 6 |
7 #import "base/mac/cocoa_protocols.h" | 7 #import "base/mac/cocoa_protocols.h" |
8 #include "base/scoped_nsobject.h" | 8 #include "base/scoped_nsobject.h" |
9 | 9 |
10 @class AnimatableView; | 10 @class AnimatableView; |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 @end | 101 @end |
102 | 102 |
103 | 103 |
104 @interface ConfirmInfoBarController : InfoBarController | 104 @interface ConfirmInfoBarController : InfoBarController |
105 // Called when the OK and Cancel buttons are clicked. | 105 // Called when the OK and Cancel buttons are clicked. |
106 - (IBAction)ok:(id)sender; | 106 - (IBAction)ok:(id)sender; |
107 - (IBAction)cancel:(id)sender; | 107 - (IBAction)cancel:(id)sender; |
108 // Called when there is a click on the link in the infobar. | 108 // Called when there is a click on the link in the infobar. |
109 - (void)linkClicked; | 109 - (void)linkClicked; |
110 @end | 110 @end |
OLD | NEW |