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

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

Issue 42743003: Adjust ChromeVox (spoken feedback) strings and make it possible for announcemen (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixing a few style tidbits. Created 7 years, 1 month 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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": "experimental.accessibility", 7 "namespace": "experimental.accessibility",
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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 "name": "onMenuClosed", 286 "name": "onMenuClosed",
287 "type": "function", 287 "type": "function",
288 "description": "Fired when a menu is closed.", 288 "description": "Fired when a menu is closed.",
289 "parameters": [ 289 "parameters": [
290 { 290 {
291 "$ref": "AccessibilityObject", 291 "$ref": "AccessibilityObject",
292 "name": "menu", 292 "name": "menu",
293 "description": "Information about the menu that was closed." 293 "description": "Information about the menu that was closed."
294 } 294 }
295 ] 295 ]
296 },
297 {
298 "name": "onSpokenFeedbackEnabled",
299 "type": "function",
300 "description": "Fired when spoken feedback is enabled.",
301 "parameters": [
302 {
303 "type": "function",
304 "name": "callback",
305 "optional": true,
306 "parameters": [
307 {
308 "type": "boolean",
309 "name": "makeAnnouncements",
310 "description": "Whether to make introductory announcements."
311 }
312 ]
313 }
314 ]
315 },
316 {
317 "name": "onSpokenFeedbackDisabled",
318 "type": "function",
319 "description": "Fired when spoken feedback is disabled."
296 } 320 }
297 ] 321 ]
298 } 322 }
299 ] 323 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698