Index: chrome/test/data/extensions/api_test/keybinding/basics/manifest.json |
=================================================================== |
--- chrome/test/data/extensions/api_test/keybinding/basics/manifest.json (revision 127690) |
+++ chrome/test/data/extensions/api_test/keybinding/basics/manifest.json (working copy) |
@@ -14,12 +14,15 @@ |
}, |
"commands": { |
"toggle-feature": { |
- "key": " Ctrl - Shift - Y ", |
+ "suggested_key_win": "Ctrl+Shift+Y", |
+ "suggested_key_mac": "Command+Shift+Y", |
+ "suggested_key_other": "Ctrl+Shift+Y", |
"description": "Toggle feature foo" |
}, |
- "browserAction": { |
- "key": "Ctrl+Shift+F", |
- "description": "" |
+ "_execute_browser_action": { |
+ "suggested_key_win": "Ctrl+Shift+F", |
+ "suggested_key_mac": "Command+Shift+F", |
+ "suggested_key_other": "Ctrl+Shift+F" |
} |
} |
} |