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

Unified Diff: chrome/test/data/webrtc/test_functions.js

Issue 1645043004: WebRtcBrowserTest with VP8 and VP9. WebRtcTestBase::NegotiateCall specifying video codec. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 11 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/test/data/webrtc/test_functions.js
diff --git a/chrome/test/data/webrtc/test_functions.js b/chrome/test/data/webrtc/test_functions.js
index 1c102b8b113c16e95debcd313b3b40cb031f015a..e67c2f479c9430e28516af2f1f6fdf50f8737489 100644
--- a/chrome/test/data/webrtc/test_functions.js
+++ b/chrome/test/data/webrtc/test_functions.js
@@ -47,3 +47,11 @@ function failTest(reason) {
returnToTest('Test failed: ' + error.stack);
return error;
}
+
+function success(method) {
+ debug(method + '(): success.');
+}
+
+function failure(method, error) {
+ throw failTest(method + '() failed: ' + JSON.stringify(error));
+}

Powered by Google App Engine
This is Rietveld 408576698