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

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

Issue 1257633002: Componentize VersionInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert version_info::Channel to a "class enum" Created 5 years, 4 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 #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
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
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
OLDNEW
« no previous file with comments | « chrome/browser/ui/apps/chrome_app_window_client.cc ('k') | chrome/browser/ui/extensions/extension_message_bubble_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698