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

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

Issue 2808053004: Fire accessibilityPrivate events on two-finger hold gesture. (Closed)
Patch Set: Address feedback Created 3 years, 8 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 { 111 {
112 "name": "onAccessibilityGesture", 112 "name": "onAccessibilityGesture",
113 "type": "function", 113 "type": "function",
114 "description": "Fired when an accessibility gesture is detected by the t ouch exploration controller.", 114 "description": "Fired when an accessibility gesture is detected by the t ouch exploration controller.",
115 "parameters": [ 115 "parameters": [
116 { 116 {
117 "name": "gesture", 117 "name": "gesture",
118 "$ref": "Gesture" 118 "$ref": "Gesture"
119 } 119 }
120 ] 120 ]
121 },
122 {
123 "name": "onTwoFingerTouchStart",
124 "type": "function",
125 "description": "Fired when we first detect two fingers are held down, wh ich can be used to toggle spoken feedback on some touch-only devices.",
126 "parameters": []
127 },
128 {
129 "name": "onTwoFingerTouchStop",
130 "type": "function",
131 "description": "Fired when the user is no longer holding down two finge rs (including releasing one, holding down three, or moving them).",
132 "parameters": []
121 } 133 }
122 ] 134 ]
123 } 135 }
124 ] 136 ]
OLDNEW
« no previous file with comments | « chrome/browser/ui/ash/chrome_shell_delegate.cc ('k') | extensions/browser/extension_event_histogram_value.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698