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

Side by Side Diff: chrome/browser/cocoa/infobar_controller.h

Issue 1127001: Implement the confirm infobar with link for mac.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 months 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
« no previous file with comments | « no previous file | chrome/browser/cocoa/infobar_controller.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/cocoa/infobar_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698