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

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: Move IsMediaKey from c/b/e/a/c/command_service.h &&.cc to c/c/e/command.h && .cc 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
« no previous file with comments | « chrome/common/extensions/command.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..01cbfaa95c407080a46fa79a26a93d87285dcbdd
--- /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 shortcuts per extension",
+ "manifest_version": 2,
+ "version": "1",
+ "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"
+ }
+ }
+}
« no previous file with comments | « chrome/common/extensions/command.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698