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

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

Issue 64273008: [Windows] Finish global and non-global media keys support on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 1 month 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/non_global_media_keys_0/manifest.json
diff --git a/chrome/test/data/extensions/api_test/keybinding/non_global_media_keys_0/manifest.json b/chrome/test/data/extensions/api_test/keybinding/non_global_media_keys_0/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..d0f2c92ec6a630a6cef72b1f691a08ceeeb21041
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/keybinding/non_global_media_keys_0/manifest.json
@@ -0,0 +1,28 @@
+{
+ "name": "An extension to test non-global media keys command",
+ "version": "1.0",
+ "manifest_version": 2,
+ "background": {
+ "scripts": ["background.js"]
+ },
+ "commands": {
+ "MediaStop-non-global-0": {
+ "suggested_key": {
+ "default": "MediaStop"
+ },
+ "description": "Test passes if called."
+ },
+ "MediaStop-non-global-1": {
+ "suggested_key": {
+ "default": "MediaStop"
Finnur 2013/11/12 16:27:54 Hmmm... An extension can register for the same sho
zhchbin 2013/11/13 05:01:57 Since I have changed the key by appending extensio
+ },
+ "description": "Test passes if called."
+ },
+ "MediaNextTrack-non-global": {
+ "suggested_key": {
+ "default": "MediaNextTrack"
+ },
+ "description": "Test failed if called (We didn't active this key)."
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698