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

Unified Diff: chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2

Issue 586103004: Implement ChromeVox next/previous line, link, and heading. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Address comments. Created 6 years, 3 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/browser/resources/chromeos/chromevox/manifest.json.jinja2
diff --git a/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2 b/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2
index f754b04250d89a525ed1d682419044ce8ddc7e76..547dcd2b2fb17593c3d64ad2f6c84665b5d19092 100644
--- a/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2
+++ b/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2
@@ -59,25 +59,49 @@
"nextElement": {
"description": "Moves to the next element",
"suggested_key": {
- "chromeos": "Search+Shift+Right"
+ "chromeos": "Search+Right"
}
},
"previousElement": {
"description": "Moves to the previous element",
"suggested_key": {
- "chromeos": "Search+Shift+Left"
+ "chromeos": "Search+Left"
}
},
"nextLine": {
- "description": "Moves to the next line",
+ "description": "__MSG_CHROMEVOX_NEXT_LINE__",
"suggested_key": {
- "chromeos": "Search+Shift+Down"
+ "chromeos": "Search+Down"
}
},
"previousLine": {
- "description": "Moves to the previous line",
+ "description": "__MSG_CHROMEVOX_PREVIOUS_LINE__",
"suggested_key": {
- "chromeos": "Search+Shift+Up"
+ "chromeos": "Search+Up"
+ }
+ },
+ "nextLink": {
+ "description": "__MSG_CHROMEVOX_NEXT_LINK__",
+ "suggested_key": {
+ "chromeos": "Search+L"
+ }
+ },
+ "previousLink": {
+ "description": "__MSG_CHROMEVOX_PREVIOUS_LINK__",
+ "suggested_key": {
+ "chromeos": "Search+Shift+L"
+ }
+ },
+ "nextHeading": {
+ "description": "Moves to the next heading",
+ "suggested_key": {
+ "chromeos": "Search+H"
+ }
+ },
+ "previousHeading": {
+ "description": "Moves to the previous heading",
+ "suggested_key": {
+ "chromeos": "Search+Shift+H"
}
}
},

Powered by Google App Engine
This is Rietveld 408576698