| Index: chrome/test/data/extensions/api_test/terminal/no_permission/test.js
|
| diff --git a/chrome/test/data/extensions/api_test/terminal/no_permission/test.js b/chrome/test/data/extensions/api_test/terminal/no_permission/test.js
|
| deleted file mode 100644
|
| index a8c5389d2dd5a3df9d0ca77d37910a55e2ee7e28..0000000000000000000000000000000000000000
|
| --- a/chrome/test/data/extensions/api_test/terminal/no_permission/test.js
|
| +++ /dev/null
|
| @@ -1,20 +0,0 @@
|
| -// Copyright (c) 2012 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 kPermissionError = "Extension does not have the permission to use this API";
|
| -
|
| -chrome.test.runTests([
|
| - function tryOpenExtension() {
|
| - chrome.terminalPrivate.openTerminalProcess("crosh",
|
| - chrome.test.callbackFail(kPermissionError));
|
| - },
|
| - function trySendInput() {
|
| - chrome.terminalPrivate.sendInput(1222, "some input",
|
| - chrome.test.callbackFail(kPermissionError));
|
| - },
|
| - function tryClose() {
|
| - chrome.terminalPrivate.closeTerminalProcess(1222,
|
| - chrome.test.callbackFail(kPermissionError));
|
| - }
|
| -]);
|
|
|