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

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: use new permission instead 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
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();
not at google - send to devlin 2013/09/13 03:22:44 do you need this notifyPass? I don't know what it
justinlin 2013/09/13 19:27:32 It's to return control to C++ because the test is
+chrome.test.sendMessage('ready1', afterTabOpened);

Powered by Google App Engine
This is Rietveld 408576698