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

Unified Diff: chrome/test/data/extensions/api_test/cast_streaming/null_stream.js

Issue 2307653002: Adding CastRemotingSender for media remoting. (Closed)
Patch Set: Fix. Created 4 years, 3 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/extensions/api_test/cast_streaming/null_stream.js
diff --git a/chrome/test/data/extensions/api_test/cast_streaming/null_stream.js b/chrome/test/data/extensions/api_test/cast_streaming/null_stream.js
index 7974954ebd05e5259c3e25ab70d05ac7d5ea308c..55cda8b92aff566379f7e22d2d47b0421f8790c7 100644
--- a/chrome/test/data/extensions/api_test/cast_streaming/null_stream.js
+++ b/chrome/test/data/extensions/api_test/cast_streaming/null_stream.js
@@ -48,12 +48,7 @@ chrome.test.runTests([
function noStream() {
miu 2016/09/02 21:32:40 Let's rename this to something like "remotingSessi
xjz 2016/09/02 22:00:10 Done.
console.log("[TEST] noAudio");
miu 2016/09/02 21:32:40 ...and update the logging string here.
xjz 2016/09/02 22:00:10 Done.
chrome.tabs.create({"url": "about:blank"}, pass(function(tab) {
- try {
- createSession(null, null, function(a, b, c) {});
- chrome.test.fail();
- } catch (e) {
- // Success.
- }
+ createSession(null, null, function(a, b, c) {});
}));
},
]);

Powered by Google App Engine
This is Rietveld 408576698