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

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

Issue 2637403002: Fix header guards in //chrome (Closed)
Patch Set: Created 3 years, 11 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_UI_COCOA_FIRST_RUN_DIALOG_H_
6 #define CHROME_BROWSER_FIRST_RUN_DIALOG_H_ 6 #define CHROME_BROWSER_UI_COCOA_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.
11 // The dialog asks the user's explicit permission for reporting stats to help 11 // The dialog asks the user's explicit permission for reporting stats to help
12 // us improve Chromium. 12 // us improve Chromium.
13 @interface FirstRunDialogController : NSWindowController { 13 @interface FirstRunDialogController : NSWindowController {
14 @private 14 @private
15 // Bound to the value of the checkbox in FirstRunDialog.xib. 15 // Bound to the value of the checkbox in FirstRunDialog.xib.
16 BOOL statsEnabled_; 16 BOOL statsEnabled_;
(...skipping 10 matching lines...) Expand all
27 27
28 // Called when the "Learn More" button is pressed. 28 // Called when the "Learn More" button is pressed.
29 - (IBAction)learnMore:(id)sender; 29 - (IBAction)learnMore:(id)sender;
30 30
31 // Properties for bindings. 31 // Properties for bindings.
32 @property(assign, nonatomic) BOOL statsEnabled; 32 @property(assign, nonatomic) BOOL statsEnabled;
33 @property(assign, nonatomic) BOOL makeDefaultBrowser; 33 @property(assign, nonatomic) BOOL makeDefaultBrowser;
34 34
35 @end 35 @end
36 36
37 #endif // CHROME_BROWSER_FIRST_RUN_DIALOG_H_ 37 #endif // CHROME_BROWSER_UI_COCOA_FIRST_RUN_DIALOG_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698