| Index: chrome/browser/ui/cocoa/first_run_dialog.mm
|
| diff --git a/chrome/browser/ui/cocoa/first_run_dialog.mm b/chrome/browser/ui/cocoa/first_run_dialog.mm
|
| index c1f1181e9fa5e585028ceb46cb35890a256ce930..3e0048449da764bbdb79be521c93ace50aa343f5 100644
|
| --- a/chrome/browser/ui/cocoa/first_run_dialog.mm
|
| +++ b/chrome/browser/ui/cocoa/first_run_dialog.mm
|
| @@ -17,6 +17,7 @@
|
| #include "chrome/browser/search_engines/template_url_service.h"
|
| #include "chrome/browser/search_engines/template_url_service_factory.h"
|
| #import "chrome/browser/ui/cocoa/search_engine_dialog_controller.h"
|
| +#include "chrome/common/chrome_version_info.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "googleurl/src/gurl.h"
|
| #include "grit/locale_settings.h"
|
| @@ -138,7 +139,8 @@ void ShowFirstRun(Profile* profile) {
|
| // True when the stats checkbox should be checked by default. This is only
|
| // the case when the canary is running.
|
| bool StatsCheckboxDefault() {
|
| - return platform_util::GetChannel() == platform_util::CHANNEL_CANARY;
|
| + return chrome::VersionInfo::GetChannel() ==
|
| + chrome::VersionInfo::CHANNEL_CANARY;
|
| }
|
|
|
| } // namespace
|
|
|