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); |