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

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: Fix OWNERS (copy from //chrome/OWNERS) 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/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..b4c3c808027263147b05f1df49c8c9ca12845146 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

Powered by Google App Engine
This is Rietveld 408576698