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

Unified Diff: chrome/test/data/extensions/api_test/tab_capture/experimental/active_tab_chrome_pages.js

Issue 17298002: Allow tabCapture API to be granted for chrome:// pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests.. how did it even work before? Created 7 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
« no previous file with comments | « chrome/test/data/extensions/api_test/tab_capture/experimental/active_tab_chrome_pages.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/tab_capture/experimental/active_tab_chrome_pages.js
diff --git a/chrome/test/data/extensions/api_test/tab_capture/experimental/active_tab_chrome_pages.js b/chrome/test/data/extensions/api_test/tab_capture/experimental/active_tab_chrome_pages.js
new file mode 100644
index 0000000000000000000000000000000000000000..b96d1f274d446409ad7e693b08ede2e53fb25298
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/tab_capture/experimental/active_tab_chrome_pages.js
@@ -0,0 +1,14 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+var afterTabOpened = function() {
+ chrome.tabCapture.capture({audio: true, video: true}, function(stream) {
+ chrome.test.assertTrue(!!stream);
+ stream.stop();
+ chrome.test.succeed();
+ });
+};
+
+chrome.test.notifyPass();
+chrome.test.sendMessage('ready1', afterTabOpened);
« no previous file with comments | « chrome/test/data/extensions/api_test/tab_capture/experimental/active_tab_chrome_pages.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698