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

Side by Side Diff: chrome/test/data/extensions/api_test/tab_capture/experimental/test.js

Issue 11038021: Implement Chrome Extension TabCapture API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 ]);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698