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

Side by Side Diff: chrome/common/extensions/api/accessibility_private.json

Issue 1953613002: Make touch accessibility gestures work with ChromeVox Next (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 [ 5 [
6 { 6 {
7 "namespace": "accessibilityPrivate", 7 "namespace": "accessibilityPrivate",
8 "compiler_options": { 8 "compiler_options": {
9 "implemented_in": "chrome/browser/accessibility/accessibility_extension_ap i.h" 9 "implemented_in": "chrome/browser/accessibility/accessibility_extension_ap i.h"
10 }, 10 },
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 "description": "True if key events should be swallowed natively and not propagated if preventDefault() gets called by the extension's background pag e." 75 "description": "True if key events should be swallowed natively and not propagated if preventDefault() gets called by the extension's background pag e."
76 } 76 }
77 ] 77 ]
78 } 78 }
79 ], 79 ],
80 "events": [ 80 "events": [
81 { 81 {
82 "name": "onIntroduceChromeVox", 82 "name": "onIntroduceChromeVox",
83 "type": "function", 83 "type": "function",
84 "description": "Fired whenever ChromeVox should output introduction." 84 "description": "Fired whenever ChromeVox should output introduction."
85 },
86 {
87 "name": "onAccessibilityGesture",
88 "type": "function",
89 "description": "Fired when an accessibility gesture is detected by the t ouch exploration controller.",
90 "parameters": [
91 {
92 "name": "gesture",
93 "type": "string"
asargent_no_longer_on_chrome 2016/05/09 19:04:54 optional suggestion: since the values of this come
dmazzoni 2016/05/09 20:03:33 Done.
94 }
95 ]
85 } 96 }
86 ] 97 ]
87 } 98 }
88 ] 99 ]
OLDNEW
« no previous file with comments | « chrome/browser/ui/ash/chrome_shell_delegate_chromeos.cc ('k') | extensions/browser/extension_event_histogram_value.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698