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

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: 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..439e5d20ee2f534859ef94b7f5f1bc4a2426d667
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/keybinding/global_media_keys_1/manifest.json
@@ -0,0 +1,17 @@
+{
+ "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"
+ },
+ "global": true,
+ "description": "Test passes if called."
Finnur 2013/11/12 16:27:54 nit: "Description" before "global" (alphabetical o
zhchbin 2013/11/13 05:01:57 Done.
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698