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

Unified Diff: chrome/browser/media/chrome_webrtc_disable_encryption_flag_browsertest.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
« no previous file with comments | « chrome/browser/mac/master_prefs.mm ('k') | chrome/browser/metrics/chrome_metrics_service_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/chrome_webrtc_disable_encryption_flag_browsertest.cc
diff --git a/chrome/browser/media/chrome_webrtc_disable_encryption_flag_browsertest.cc b/chrome/browser/media/chrome_webrtc_disable_encryption_flag_browsertest.cc
index 91d613afc11e7604b19f676bd3e4fa7950dca8a3..bccd39b75510dc7b40f90574041c1a0deabec5a0 100644
--- a/chrome/browser/media/chrome_webrtc_disable_encryption_flag_browsertest.cc
+++ b/chrome/browser/media/chrome_webrtc_disable_encryption_flag_browsertest.cc
@@ -72,14 +72,14 @@ IN_PROC_BROWSER_TEST_F(WebRtcDisableEncryptionFlagBrowserTest,
WaitForVideoToPlay(right_tab);
bool should_detect_encryption = true;
- VersionInfo::Channel channel = VersionInfo::GetChannel();
- if (channel == VersionInfo::CHANNEL_UNKNOWN ||
- channel == VersionInfo::CHANNEL_CANARY ||
- channel == VersionInfo::CHANNEL_DEV) {
+ version_info::Channel channel = VersionInfo::GetChannel();
+ if (channel == version_info::Channel::UNKNOWN ||
+ channel == version_info::Channel::CANARY ||
+ channel == version_info::Channel::DEV) {
should_detect_encryption = false;
}
#if defined(OS_ANDROID)
- if (channel == VersionInfo::CHANNEL_BETA)
+ if (channel == version_info::Channel::BETA)
should_detect_encryption = false;
#endif
« no previous file with comments | « chrome/browser/mac/master_prefs.mm ('k') | chrome/browser/metrics/chrome_metrics_service_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698