OLD | NEW |
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 #import "chrome/browser/ui/cocoa/first_run_dialog.h" | 5 #import "chrome/browser/ui/cocoa/first_run_dialog.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/mac/bundle_locations.h" | 8 #include "base/mac/bundle_locations.h" |
9 #import "base/mac/scoped_nsobject.h" | 9 #import "base/mac/scoped_nsobject.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 } | 120 } |
121 first_run::SetShouldShowWelcomePage(); | 121 first_run::SetShouldShowWelcomePage(); |
122 | 122 |
123 return dialog_shown; | 123 return dialog_shown; |
124 } | 124 } |
125 | 125 |
126 // True when the stats checkbox should be checked by default. This is only | 126 // True when the stats checkbox should be checked by default. This is only |
127 // the case when the canary is running. | 127 // the case when the canary is running. |
128 bool StatsCheckboxDefault() { | 128 bool StatsCheckboxDefault() { |
129 return chrome::VersionInfo::GetChannel() == | 129 return chrome::VersionInfo::GetChannel() == |
130 chrome::VersionInfo::CHANNEL_CANARY; | 130 version_info::Channel::CANARY; |
131 } | 131 } |
132 | 132 |
133 } // namespace | 133 } // namespace |
134 | 134 |
135 namespace first_run { | 135 namespace first_run { |
136 | 136 |
137 bool ShowFirstRunDialog(Profile* profile) { | 137 bool ShowFirstRunDialog(Profile* profile) { |
138 return ShowFirstRun(profile); | 138 return ShowFirstRun(profile); |
139 } | 139 } |
140 | 140 |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 [NSApp stopModal]; | 278 [NSApp stopModal]; |
279 } | 279 } |
280 | 280 |
281 - (IBAction)learnMore:(id)sender { | 281 - (IBAction)learnMore:(id)sender { |
282 NSString* urlStr = base::SysUTF8ToNSString(chrome::kLearnMoreReportingURL); | 282 NSString* urlStr = base::SysUTF8ToNSString(chrome::kLearnMoreReportingURL); |
283 NSURL* learnMoreUrl = [NSURL URLWithString:urlStr]; | 283 NSURL* learnMoreUrl = [NSURL URLWithString:urlStr]; |
284 [[NSWorkspace sharedWorkspace] openURL:learnMoreUrl]; | 284 [[NSWorkspace sharedWorkspace] openURL:learnMoreUrl]; |
285 } | 285 } |
286 | 286 |
287 @end | 287 @end |
OLD | NEW |