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

Unified Diff: chrome/test/data/extensions/manifest_tests/command_should_not_count_media_keys.json

Issue 180783012: Media Keys should not count towards the max of four shortcuts per extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 months 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/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"
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698