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

Unified Diff: content/test/webrtc_content_browsertest_base.cc

Issue 516883002: Disabling WebRTC call tests on Android ASAN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moving AEC tests to own file to make disables cleaner. Created 6 years, 4 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 5b0df6f59ee87b7e1c9c599907b4aca3f1a3a976..3e005131a2fec7f598b7feeea2442f6e77d3a028 100644
--- a/content/test/webrtc_content_browsertest_base.cc
+++ b/content/test/webrtc_content_browsertest_base.cc
@@ -75,4 +75,12 @@ std::string WebRtcContentBrowserTest::GenerateGetUserMediaCall(
max_frame_rate);
}
+void WebRtcContentBrowserTest::DisableOpusIfOnAndroid() {
+#if defined(OS_ANDROID)
+ // Always force iSAC 16K on Android for now (Opus is broken).
tommi (sloooow) - chröme 2014/08/29 08:11:52 fix indent
phoglund_chromium 2014/08/29 08:22:35 Done.
+ EXPECT_EQ("isac-forced",
+ ExecuteJavascriptAndReturnResult("forceIsac16KInSdp();"));
+#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