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

Unified Diff: chrome/browser/ui/app_list/app_list_service_mac.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, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/app_list/app_list_service_mac.mm
diff --git a/chrome/browser/ui/app_list/app_list_service_mac.mm b/chrome/browser/ui/app_list/app_list_service_mac.mm
index 643953e47178153e1594f9e7ccabb9fc59b43803..9679c0ef3b6d037c1beaad8c8dc0acfca9db1d84 100644
--- a/chrome/browser/ui/app_list/app_list_service_mac.mm
+++ b/chrome/browser/ui/app_list/app_list_service_mac.mm
@@ -89,8 +89,8 @@ const CGFloat kDistanceMovedOnShow = 20;
scoped_ptr<web_app::ShortcutInfo> GetAppListShortcutInfo(
const base::FilePath& profile_path) {
scoped_ptr<web_app::ShortcutInfo> shortcut_info(new web_app::ShortcutInfo);
- chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
- if (channel == chrome::VersionInfo::CHANNEL_CANARY) {
+ version_info::Channel channel = chrome::VersionInfo::GetChannel();
+ if (channel == version_info::Channel::CANARY) {
shortcut_info->title =
l10n_util::GetStringUTF16(IDS_APP_LIST_SHORTCUT_NAME_CANARY);
} else {
@@ -112,8 +112,8 @@ void CreateAppListShim(const base::FilePath& profile_path) {
GetAppListShortcutInfo(profile_path);
ResourceBundle& resource_bundle = ResourceBundle::GetSharedInstance();
- chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
- if (channel == chrome::VersionInfo::CHANNEL_CANARY) {
+ version_info::Channel channel = chrome::VersionInfo::GetChannel();
+ if (channel == version_info::Channel::CANARY) {
#if defined(GOOGLE_CHROME_BUILD)
shortcut_info->favicon.Add(
*resource_bundle.GetImageSkiaNamed(IDR_APP_LIST_CANARY_16));
« no previous file with comments | « chrome/browser/sync/glue/chrome_report_unrecoverable_error.cc ('k') | chrome/browser/ui/apps/chrome_app_window_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698