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

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

Issue 74083003: Allow controls other than windows to send alert accessibility events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: rebase 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
« no previous file with comments | « chrome/browser/ui/views/accessibility/accessibility_event_router_views_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 } 105 }
106 }, 106 },
107 { 107 {
108 "id": "AccessibilityObject", 108 "id": "AccessibilityObject",
109 "type": "object", 109 "type": "object",
110 "description": "Parent class for accessibility information about an obje ct.", 110 "description": "Parent class for accessibility information about an obje ct.",
111 "properties": { 111 "properties": {
112 "type": { 112 "type": {
113 "type": "string", 113 "type": "string",
114 "description": "The type of this object, which determines the conten ts of 'details'.", 114 "description": "The type of this object, which determines the conten ts of 'details'.",
115 "enum": ["button", "checkbox", "combobox", "link", "menu", "menuitem ", "radiobutton", "slider", "tab", "textbox", "window"] 115 "enum": ["alert", "button", "checkbox", "combobox", "link", "menu", "menuitem", "radiobutton", "slider", "tab", "textbox", "window"]
116 }, 116 },
117 "name": { 117 "name": {
118 "type": "string", 118 "type": "string",
119 "description": "The localized name of the object, like OK or Passwor d. Do not rely on an exact string match because the text will be in the user's l anguage and may change in the future." 119 "description": "The localized name of the object, like OK or Passwor d. Do not rely on an exact string match because the text will be in the user's l anguage and may change in the future."
120 }, 120 },
121 "context": { 121 "context": {
122 "type": "string", 122 "type": "string",
123 "description": "The localized name of the context for the object, li ke the name of the surrounding toolbar or group of controls.", 123 "description": "The localized name of the context for the object, li ke the name of the surrounding toolbar or group of controls.",
124 "optional": true 124 "optional": true
125 }, 125 },
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 { 307 {
308 "type": "boolean", 308 "type": "boolean",
309 "name": "makeAnnouncements", 309 "name": "makeAnnouncements",
310 "description": "Whether to make introductory announcements." 310 "description": "Whether to make introductory announcements."
311 } 311 }
312 ] 312 ]
313 } 313 }
314 ] 314 ]
315 } 315 }
316 ] 316 ]
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/accessibility/accessibility_event_router_views_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698