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

Unified Diff: chrome/browser/ui/views/app_list/win/app_list_service_win.cc

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/views/app_list/win/app_list_service_win.cc
diff --git a/chrome/browser/ui/views/app_list/win/app_list_service_win.cc b/chrome/browser/ui/views/app_list/win/app_list_service_win.cc
index a079122239916360f72bbc308d3ac66ffa29e9fd..9a4e98d975e160e7d9ee6d0cda26532f734df40c 100644
--- a/chrome/browser/ui/views/app_list/win/app_list_service_win.cc
+++ b/chrome/browser/ui/views/app_list/win/app_list_service_win.cc
@@ -330,14 +330,14 @@ void AppListServiceWin::ScheduleWarmup() {
// to the server-side analysis tool, reducing this period to 10 sec in Dev
// builds and Canary, where profiler instrumentations are enabled.
switch (chrome::VersionInfo::GetChannel()) {
- case chrome::VersionInfo::CHANNEL_UNKNOWN:
- case chrome::VersionInfo::CHANNEL_CANARY:
+ case version_info::Channel::UNKNOWN:
+ case version_info::Channel::CANARY:
kInitWindowDelay = 10;
break;
- case chrome::VersionInfo::CHANNEL_DEV:
- case chrome::VersionInfo::CHANNEL_BETA:
- case chrome::VersionInfo::CHANNEL_STABLE:
+ case version_info::Channel::DEV:
+ case version_info::Channel::BETA:
+ case version_info::Channel::STABLE:
// Except on Canary, don't bother scheduling an app launcher warmup when
// it's not already enabled. Always schedule on Canary while collecting
// profiler data (see comment above).
« no previous file with comments | « chrome/browser/ui/panels/panel_manager.cc ('k') | chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698