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

Side by Side Diff: chrome/test/data/extensions/api_test/webrtc_cast/basics.js

Issue 47303005: Implement native bindings for cast extensions API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 chrome.test.runTests([ 5 chrome.test.runTests([
6 function udpTransport() { 6 function udpTransport() {
7 chrome.webrtc.castUdpTransport.create(function(info) { 7 chrome.webrtc.castUdpTransport.create(function(info) {
8 chrome.webrtc.start(info.transportId, 8 chrome.webrtc.castUdpTransport.start(info.transportId,
9 {address: "127.0.0.1", port: 60613}); 9 {address: "127.0.0.1", port: 60613});
scherkus (not reviewing) 2013/10/29 17:38:17 indent needs fixing -- I'd drop info.transportId t
10 chrome.webrtc.stop(info.transportId); 10 chrome.webrtc.castUdpTransport.stop(info.transportId);
11 chrome.webrtc.destroy(info.transportId); 11 chrome.webrtc.castUdpTransport.destroy(info.transportId);
12 chrome.test.succeed(); 12 chrome.test.succeed();
13 }); 13 });
14 // TODO(hclam): Remove this line when the API is actually working.
15 // This is there so the test can finish.
16 chrome.test.succeed();
17 } 14 }
18 ]); 15 ]);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698