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

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

Issue 127353002: Clean-up: Move tabCapture API test data files out of experimental dir. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years, 11 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/get_user_media_test.js
diff --git a/chrome/test/data/extensions/api_test/tab_capture/experimental/get_user_media_test.js b/chrome/test/data/extensions/api_test/tab_capture/experimental/get_user_media_test.js
deleted file mode 100644
index 71b4683af199bd30a1fc73938068d86aa6ffc6a8..0000000000000000000000000000000000000000
--- a/chrome/test/data/extensions/api_test/tab_capture/experimental/get_user_media_test.js
+++ /dev/null
@@ -1,23 +0,0 @@
-// 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 onReply = function(id) {
- chrome.test.runTests([
- function testGetUserMedia() {
- navigator.webkitGetUserMedia(
- {
- video:
- {
- 'mandatory':
- {
- chromeMediaSource: 'tab',
- chromeMediaSourceId: id
- }
- },
- audio: false
- }, chrome.test.fail, chrome.test.succeed);
- }]);
-};
-
-chrome.test.notifyPass();
-chrome.test.sendMessage('ready', onReply);

Powered by Google App Engine
This is Rietveld 408576698