| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 @class AnimatableView; | 7 @class AnimatableView; |
| 8 @class HoverCloseButton; | 8 @class HoverCloseButton; |
| 9 @protocol InfoBarContainer; | 9 @protocol InfoBarContainer; |
| 10 class InfoBarDelegate; | 10 class InfoBarDelegate; |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 @interface LinkInfoBarController : InfoBarController | 78 @interface LinkInfoBarController : InfoBarController |
| 79 // Called when there is a click on the link in the infobar. | 79 // Called when there is a click on the link in the infobar. |
| 80 - (void)linkClicked; | 80 - (void)linkClicked; |
| 81 @end | 81 @end |
| 82 | 82 |
| 83 | 83 |
| 84 @interface ConfirmInfoBarController : InfoBarController | 84 @interface ConfirmInfoBarController : InfoBarController |
| 85 // Called when the ok and cancel buttons are clicked. | 85 // Called when the ok and cancel buttons are clicked. |
| 86 - (IBAction)ok:(id)sender; | 86 - (IBAction)ok:(id)sender; |
| 87 - (IBAction)cancel:(id)sender; | 87 - (IBAction)cancel:(id)sender; |
| 88 // Called when there is a click on the link in the infobar. |
| 89 - (void)linkClicked; |
| 88 @end | 90 @end |
| OLD | NEW |