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 #ifndef CHROME_BROWSER_FIRST_RUN_DIALOG_H_ | 5 #ifndef CHROME_BROWSER_FIRST_RUN_DIALOG_H_ |
6 #define CHROME_BROWSER_FIRST_RUN_DIALOG_H_ | 6 #define CHROME_BROWSER_FIRST_RUN_DIALOG_H_ |
7 | 7 |
8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
9 | 9 |
10 // Class that acts as a controller for the modal first run dialog. | 10 // Class that acts as a controller for the modal first run dialog. |
(...skipping 18 matching lines...) Expand all Loading... |
29 // Called when the "Start Google Chrome" button is pressed. | 29 // Called when the "Start Google Chrome" button is pressed. |
30 - (IBAction)ok:(id)sender; | 30 - (IBAction)ok:(id)sender; |
31 | 31 |
32 // Cancel button calls this. | 32 // Cancel button calls this. |
33 - (IBAction)cancel:(id)sender; | 33 - (IBAction)cancel:(id)sender; |
34 | 34 |
35 // Called when the "Learn More" button is pressed. | 35 // Called when the "Learn More" button is pressed. |
36 - (IBAction)learnMore:(id)sender; | 36 - (IBAction)learnMore:(id)sender; |
37 | 37 |
38 // Properties for bindings. | 38 // Properties for bindings. |
39 @property(assign) BOOL userDidCancel; | 39 @property(assign, nonatomic) BOOL userDidCancel; |
40 @property(assign) BOOL statsEnabled; | 40 @property(assign, nonatomic) BOOL statsEnabled; |
41 @property(assign) BOOL statsCheckboxHidden; | 41 @property(assign, nonatomic) BOOL statsCheckboxHidden; |
42 @property(assign) BOOL makeDefaultBrowser; | 42 @property(assign, nonatomic) BOOL makeDefaultBrowser; |
43 @property(assign) BOOL importBookmarks; | 43 @property(assign, nonatomic) BOOL importBookmarks; |
44 @property(assign) int browserImportSelectedIndex; | 44 @property(assign, nonatomic) int browserImportSelectedIndex; |
45 @property(retain) NSArray* browserImportList; | 45 @property(retain, nonatomic) NSArray* browserImportList; |
46 @property(assign) BOOL browserImportListHidden; | 46 @property(assign, nonatomic) BOOL browserImportListHidden; |
47 | 47 |
48 @end | 48 @end |
49 | 49 |
50 #endif // CHROME_BROWSER_FIRST_RUN_DIALOG_H_ | 50 #endif // CHROME_BROWSER_FIRST_RUN_DIALOG_H_ |
OLD | NEW |