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

Unified Diff: chrome/test/data/extensions/api_test/keybinding/command_update/background.js

Issue 293133004: Remove unused command_update keybinding test data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 6 years, 7 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 | « no previous file | chrome/test/data/extensions/api_test/keybinding/command_update/manifest.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/keybinding/command_update/background.js
diff --git a/chrome/test/data/extensions/api_test/keybinding/command_update/background.js b/chrome/test/data/extensions/api_test/keybinding/command_update/background.js
deleted file mode 100644
index d9f9e381b4ef7413d406117d0506010391a3a0fa..0000000000000000000000000000000000000000
--- a/chrome/test/data/extensions/api_test/keybinding/command_update/background.js
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 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.
-
-chrome.commands.onCommand.addListener(function(command) {
- if (command == "command_B") {
- chrome.test.notifyPass();
- return;
- }
-
- // Everything else is a failure case.
- chrome.test.notifyFail("Unexpected command received: " + command);
-});
-
-chrome.test.notifyPass();
« no previous file with comments | « no previous file | chrome/test/data/extensions/api_test/keybinding/command_update/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698