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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "name": "An extension to test non-global media keys command",
3 "version": "1.0",
4 "manifest_version": 2,
5 "background": {
6 "scripts": ["background.js"]
7 },
8 "commands": {
9 "MediaStop-non-global-0": {
10 "suggested_key": {
11 "default": "MediaStop"
12 },
13 "description": "Test passes if called."
14 },
15 "MediaStop-non-global-1": {
16 "suggested_key": {
17 "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
18 },
19 "description": "Test passes if called."
20 },
21 "MediaNextTrack-non-global": {
22 "suggested_key": {
23 "default": "MediaNextTrack"
24 },
25 "description": "Test failed if called (We didn't active this key)."
26 }
27 }
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698