| 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
|
|
|
|
|