OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // TODO(justinlin): Test to make sure state transitions are correct. |
| 6 |
| 7 var tabCapture = chrome.experimental.tabCapture; |
| 8 var tabMediaRequestCallback = function(stream) { |
| 9 chrome.test.assertFalse(null == stream); |
| 10 chrome.test.succeed(); |
| 11 }; |
| 12 |
| 13 function runTests(tests) { |
| 14 chrome.test.getConfig(function(config) { |
| 15 operatingSystem = config.osName; |
| 16 chrome.test.runTests(tests); |
| 17 }); |
| 18 } |
| 19 |
| 20 chrome.test.runTests([ |
| 21 function getTabMedia() { |
| 22 tabCapture.getTabMedia(null, null, |
| 23 chrome.test.callbackPass(tabMediaRequestCallback)); |
| 24 } |
| 25 ]); |
OLD | NEW |