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

Unified Diff: chrome/test/data/extensions/api_test/keybinding/dont_overwrite_system/manifest.json

Issue 880523005: [Extensions] Simplify Extension Keybinding API Tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Finnur's Created 5 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/keybinding/dont_overwrite_system/manifest.json
diff --git a/chrome/test/data/extensions/api_test/keybinding/dont_overwrite_system/manifest.json b/chrome/test/data/extensions/api_test/keybinding/dont_overwrite_system/manifest.json
index cc1345f5cb1a571886e7b090a6a39113d499bf0b..2cd7b98523d22467cd90e49b7e382ba5a97a6ed4 100644
--- a/chrome/test/data/extensions/api_test/keybinding/dont_overwrite_system/manifest.json
+++ b/chrome/test/data/extensions/api_test/keybinding/dont_overwrite_system/manifest.json
@@ -7,17 +7,17 @@
},
"permissions": ["activeTab"],
"commands": {
- "red": {
+ "ctrl_f": {
"suggested_key": "Ctrl+F",
- "description": "Make the page red"
+ "description": "Send a ctrl f test message"
},
- "green": {
+ "ctrl_d": {
"suggested_key": "Ctrl+D",
- "description": "Make the page green"
+ "description": "Send a ctrl d test message"
},
- "blue": {
+ "alt_shift_f": {
"suggested_key": "Alt+Shift+F",
- "description": "Make the page blue"
+ "description": "Send a ctrl shift f test message"
}
}
}

Powered by Google App Engine
This is Rietveld 408576698