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

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

Issue 2307653002: Adding CastRemotingSender for media remoting. (Closed)
Patch Set: Rebased. 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..ededf794c714a318930f14c1c38d4d7aa63ad942 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
@@ -45,15 +45,10 @@ chrome.test.runTests([
}));
}));
},
- function noStream() {
- console.log("[TEST] noAudio");
+ function remotingSession() {
+ console.log("[TEST] remotingSession");
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