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

Unified Diff: chrome/browser/ui/webui/flags_ui.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/webui/flags_ui.cc
diff --git a/chrome/browser/ui/webui/flags_ui.cc b/chrome/browser/ui/webui/flags_ui.cc
index 0918de130310e3c3420d2851daacd83471754bee..c0676749e4b47fd12853689f5c8c69ff92177e5d 100644
--- a/chrome/browser/ui/webui/flags_ui.cc
+++ b/chrome/browser/ui/webui/flags_ui.cc
@@ -186,11 +186,11 @@ void FlagsDOMHandler::HandleRequestFlagsExperiments(
access_ == about_flags::kGeneralAccessFlagsOnly);
#if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS)
- chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
+ version_info::Channel channel = chrome::VersionInfo::GetChannel();
results.SetBoolean("showBetaChannelPromotion",
- channel == chrome::VersionInfo::CHANNEL_STABLE);
+ channel == version_info::Channel::STABLE);
results.SetBoolean("showDevChannelPromotion",
- channel == chrome::VersionInfo::CHANNEL_BETA);
+ channel == version_info::Channel::BETA);
#else
results.SetBoolean("showBetaChannelPromotion", false);
results.SetBoolean("showDevChannelPromotion", false);

Powered by Google App Engine
This is Rietveld 408576698