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

Unified Diff: chrome/test/data/extensions/api_test/keybinding/global_media_keys_1/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: gclient sync. 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/global_media_keys_1/manifest.json
diff --git a/chrome/test/data/extensions/api_test/keybinding/global_media_keys_1/manifest.json b/chrome/test/data/extensions/api_test/keybinding/global_media_keys_1/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..f37d9ee8d0dbb2641b96e85afd3f5810bd6d3ae8
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/keybinding/global_media_keys_1/manifest.json
@@ -0,0 +1,24 @@
+{
+ "name": "An extension to test global media keys command",
+ "version": "1.0",
+ "manifest_version": 2,
+ "background": {
+ "scripts": ["background.js"]
+ },
+ "commands": {
+ "MediaNextTrack-global": {
+ "suggested_key": {
+ "default": "MediaNextTrack"
+ },
+ "description": "Test passes if called.",
+ "global": true
+ },
+ "MediaStop-global": {
+ "suggested_key": {
+ "default": "MediaStop"
+ },
+ "description": "Test failed if called (We didn't active this key).",
+ "global": true
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698