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

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

Issue 1361253002: Separate the URL of an infobar link with clicking on it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pkasting Created 5 years, 2 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
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/ui/autofill/chrome_autofill_client.cc ('k') | chrome/browser/ui/cocoa/confirm_bubble_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698