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

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

Issue 219213007: Remove .html extension from links (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | chrome/common/extensions/api/bookmarks.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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": "accessibilityFeatures", 7 "namespace": "accessibilityFeatures",
8 "platforms": ["chromeos"], 8 "platforms": ["chromeos"],
9 "description": "Use the <code>chrome.accessibilityFeatures</code> API to man age Chrome's accessibility features. This API relies on the <a href='types.html# ChromeSetting'>ChromeSetting prototype of the type API</a> for getting and setti ng individual accessibility features. In order to get feature states the extensi on must request <code>accessibilityFeatures.read</code> permission. For modifyin g feature state, the extension needs <code>accessibilityFeatures.modify</code> p ermission. Note that <code>accessibilityFeatures.modify</code> does not imply <c ode>accessibilityFeatures.read</code> permission.", 9 "description": "Use the <code>chrome.accessibilityFeatures</code> API to man age Chrome's accessibility features. This API relies on the <a href='types#Chrom eSetting'>ChromeSetting prototype of the type API</a> for getting and setting in dividual accessibility features. In order to get feature states the extension mu st request <code>accessibilityFeatures.read</code> permission. For modifying fea ture state, the extension needs <code>accessibilityFeatures.modify</code> permis sion. Note that <code>accessibilityFeatures.modify</code> does not imply <code>a ccessibilityFeatures.read</code> permission.",
10 "properties": { 10 "properties": {
11 "spokenFeedback": { 11 "spokenFeedback": {
12 "$ref": "types.ChromeSetting", 12 "$ref": "types.ChromeSetting",
13 "description": "Spoken feedback (text-to-speech). The value indicates wh ether the feature is enabled or not. <code>get()</code> requires <code>accessibi lityFeatures.read</code> permission. <code>set()</code> and <code>clear()</code> require <code>accessibilityFeatures.modify</code> permission.", 13 "description": "Spoken feedback (text-to-speech). The value indicates wh ether the feature is enabled or not. <code>get()</code> requires <code>accessibi lityFeatures.read</code> permission. <code>set()</code> and <code>clear()</code> require <code>accessibilityFeatures.modify</code> permission.",
14 "value": ["spokenFeedback", {"type": "boolean"}] 14 "value": ["spokenFeedback", {"type": "boolean"}]
15 }, 15 },
16 "largeCursor": { 16 "largeCursor": {
17 "$ref": "types.ChromeSetting", 17 "$ref": "types.ChromeSetting",
18 "description": "Enlarged cursor. The value indicates whether the feature is enabled or not. <code>get()</code> requires <code>accessibilityFeatures.read </code> permission. <code>set()</code> and <code>clear()</code> require <code>ac cessibilityFeatures.modify</code> permission.", 18 "description": "Enlarged cursor. The value indicates whether the feature is enabled or not. <code>get()</code> requires <code>accessibilityFeatures.read </code> permission. <code>set()</code> and <code>clear()</code> require <code>ac cessibilityFeatures.modify</code> permission.",
19 "value": ["largeCursor", {"type": "boolean"}] 19 "value": ["largeCursor", {"type": "boolean"}]
(...skipping 19 matching lines...) Expand all
39 "value": ["autoclick", {"type": "boolean"}] 39 "value": ["autoclick", {"type": "boolean"}]
40 }, 40 },
41 "virtualKeyboard": { 41 "virtualKeyboard": {
42 "$ref": "types.ChromeSetting", 42 "$ref": "types.ChromeSetting",
43 "description": "Virtual on-screen keyboard. The value indicates whether the feature is enabled or not. <code>get()</code> requires <code>accessibilityFe atures.read</code> permission. <code>set()</code> and <code>clear()</code> requi re <code>accessibilityFeatures.modify</code> permission.", 43 "description": "Virtual on-screen keyboard. The value indicates whether the feature is enabled or not. <code>get()</code> requires <code>accessibilityFe atures.read</code> permission. <code>set()</code> and <code>clear()</code> requi re <code>accessibilityFeatures.modify</code> permission.",
44 "value": ["virtualKeyboard", {"type": "boolean"}] 44 "value": ["virtualKeyboard", {"type": "boolean"}]
45 } 45 }
46 } 46 }
47 } 47 }
48 ] 48 ]
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/api/bookmarks.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698