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

Unified Diff: content/test/webrtc_content_browsertest_base.cc

Issue 669593002: Disabling flaky WebRtcAecDumpBrowserTest.TwoCallsWithAecDump on Win XP. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed silly compilation error Created 6 years, 2 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 | « content/test/webrtc_content_browsertest_base.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/webrtc_content_browsertest_base.cc
diff --git a/content/test/webrtc_content_browsertest_base.cc b/content/test/webrtc_content_browsertest_base.cc
index db83501971f94d6d57e18bd42ceb669a5308e2e9..e6c3b4600815849a6eb3ca9e5635179dc845fe63 100644
--- a/content/test/webrtc_content_browsertest_base.cc
+++ b/content/test/webrtc_content_browsertest_base.cc
@@ -17,6 +17,10 @@
#include "chromeos/audio/cras_audio_handler.h"
#endif
+#if defined(OS_WIN)
+#include "base/win/windows_version.h"
+#endif
+
namespace content {
void WebRtcContentBrowserTest::SetUpCommandLine(CommandLine* command_line) {
@@ -97,4 +101,12 @@ void WebRtcContentBrowserTest::DisableOpusIfOnAndroid() {
#endif
}
+bool WebRtcContentBrowserTest::OnWinXp() const {
+#if defined(OS_WIN)
+ return base::win::GetVersion() <= base::win::VERSION_XP;
+#else
+ return false;
+#endif
+}
+
} // namespace content
« no previous file with comments | « content/test/webrtc_content_browsertest_base.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698