Index: chrome/test/data/extensions/manifest_tests/command_should_not_count_media_keys.json |
diff --git a/chrome/test/data/extensions/manifest_tests/command_should_not_count_media_keys.json b/chrome/test/data/extensions/manifest_tests/command_should_not_count_media_keys.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..43873d251c06e1632eeaaed5ee79dee01c80a1ff |
--- /dev/null |
+++ b/chrome/test/data/extensions/manifest_tests/command_should_not_count_media_keys.json |
@@ -0,0 +1,31 @@ |
+{ |
+ "name": "Command test - mediaKeys should not counts towards the max of four shotcuts per extension", |
Finnur
2014/02/28 11:02:26
s/shotcuts/shortcuts/
zhchbin
2014/02/28 11:45:22
I shouldn't copy and paste without check. My bad.
|
+ "manifest_version": 2, |
+ "version": "2", |
Finnur
2014/02/28 11:02:26
nit: version 1 ? :)
zhchbin
2014/02/28 11:45:22
Done.
Copy from: "command_too_many.json".
|
+ "commands": { |
+ "MediaNextTrack": { |
+ "suggested_key": "MediaNextTrack", |
+ "description": "MediaNextTrack" |
+ }, |
+ "MediaPlayPause": { |
+ "suggested_key": "MediaPlayPause", |
+ "description": "MediaPlayPause" |
+ }, |
+ "MediaPrevTrack": { |
+ "suggested_key": "MediaPrevTrack", |
+ "description": "MediaPrevTrack" |
+ }, |
+ "MediaStop": { |
+ "suggested_key": "MediaStop", |
+ "description": "MediaStop" |
+ }, |
+ "feature1": { |
+ "suggested_key": "Ctrl+A", |
+ "description": "feature1" |
+ }, |
+ "feature2": { |
+ "suggested_key": "Ctrl+B", |
+ "description": "feature2" |
+ } |
+ } |
+} |