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

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

Issue 854153003: Add "OK, Google" and extended SafeBrowsing reporting to `chrome.privacy` (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 (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": "privacy", 7 "namespace": "privacy",
8 "description": "Use the <code>chrome.privacy</code> API to control usage of the features in Chrome that can affect a user's privacy. This API relies on the <a href='types#ChromeSetting'>ChromeSetting prototype of the type API</a> for ge tting and setting Chrome's configuration.", 8 "description": "Use the <code>chrome.privacy</code> API to control usage of the features in Chrome that can affect a user's privacy. This API relies on the <a href='types#ChromeSetting'>ChromeSetting prototype of the type API</a> for ge tting and setting Chrome's configuration.",
9 "properties": { 9 "properties": {
10 "network": { 10 "network": {
(...skipping 16 matching lines...) Expand all
27 "alternateErrorPagesEnabled": { 27 "alternateErrorPagesEnabled": {
28 "$ref": "types.ChromeSetting", 28 "$ref": "types.ChromeSetting",
29 "value": ["alternateErrorPagesEnabled", {"type":"boolean"}], 29 "value": ["alternateErrorPagesEnabled", {"type":"boolean"}],
30 "description": "If enabled, Chrome uses a web service to help resolv e navigation errors. This preference's value is a boolean, defaulting to <code>t rue</code>." 30 "description": "If enabled, Chrome uses a web service to help resolv e navigation errors. This preference's value is a boolean, defaulting to <code>t rue</code>."
31 }, 31 },
32 "autofillEnabled": { 32 "autofillEnabled": {
33 "$ref": "types.ChromeSetting", 33 "$ref": "types.ChromeSetting",
34 "value": ["autofillEnabled", {"type":"boolean"}], 34 "value": ["autofillEnabled", {"type":"boolean"}],
35 "description": "If enabled, Chrome offers to automatically fill in f orms. This preference's value is a boolean, defaulting to <code>true</code>." 35 "description": "If enabled, Chrome offers to automatically fill in f orms. This preference's value is a boolean, defaulting to <code>true</code>."
36 }, 36 },
37 "hotwordSearchEnabled": {
38 "$ref": "types.ChromeSetting",
39 "value": ["hotwordSearchEnabled", {"type":"boolean"}],
40 "description": "If enabled, Chrome will enable 'OK, Google' to start a voice search. This preference's value is a boolean, defaulting to <code>true< /code>."
41 },
37 "passwordSavingEnabled": { 42 "passwordSavingEnabled": {
38 "$ref": "types.ChromeSetting", 43 "$ref": "types.ChromeSetting",
39 "value": ["passwordSavingEnabled", {"type":"boolean"}], 44 "value": ["passwordSavingEnabled", {"type":"boolean"}],
40 "description": "If enabled, the password manager will ask if you wan t to save passwords. This preference's value is a boolean, defaulting to <code>t rue</code>." 45 "description": "If enabled, the password manager will ask if you wan t to save passwords. This preference's value is a boolean, defaulting to <code>t rue</code>."
41 }, 46 },
42 "safeBrowsingEnabled": { 47 "safeBrowsingEnabled": {
43 "$ref": "types.ChromeSetting", 48 "$ref": "types.ChromeSetting",
44 "value": ["safeBrowsingEnabled", {"type":"boolean"}], 49 "value": ["safeBrowsingEnabled", {"type":"boolean"}],
45 "description": "If enabled, Chrome does its best to protect you from phishing and malware. This preference's value is a boolean, defaulting to <code >true</code>." 50 "description": "If enabled, Chrome does its best to protect you from phishing and malware. This preference's value is a boolean, defaulting to <code >true</code>."
46 }, 51 },
52 "safeBrowsingExtendedReportingEnabled": {
not at google - send to devlin 2015/01/20 18:04:54 Funny, how do you turn this on in the UI anyway?
53 "$ref": "types.ChromeSetting",
54 "value": ["safeBrowsingExtendedReportingEnabled", {"type":"boolean"} ],
55 "description": "If enabled, Chrome will send additional information to Google when SafeBrowsing blocks a page, such as the content of the blocked pa ge. This preference's value is a boolean, defaulting to <code>false</code>."
56 },
47 "searchSuggestEnabled": { 57 "searchSuggestEnabled": {
48 "$ref": "types.ChromeSetting", 58 "$ref": "types.ChromeSetting",
49 "value": ["searchSuggestEnabled", {"type":"boolean"}], 59 "value": ["searchSuggestEnabled", {"type":"boolean"}],
50 "description": "If enabled, Chrome sends the text you type into the Omnibox to your default search engine, which provides predictions of websites an d searches that are likely completions of what you've typed so far. This prefere nce's value is a boolean, defaulting to <code>true</code>." 60 "description": "If enabled, Chrome sends the text you type into the Omnibox to your default search engine, which provides predictions of websites an d searches that are likely completions of what you've typed so far. This prefere nce's value is a boolean, defaulting to <code>true</code>."
51 }, 61 },
52 "spellingServiceEnabled": { 62 "spellingServiceEnabled": {
53 "$ref": "types.ChromeSetting", 63 "$ref": "types.ChromeSetting",
54 "value": ["spellingServiceEnabled", {"type":"boolean"}], 64 "value": ["spellingServiceEnabled", {"type":"boolean"}],
55 "description": "If enabled, Chrome uses a web service to help correc t spelling errors. This preference's value is a boolean, defaulting to <code>fal se</code>." 65 "description": "If enabled, Chrome uses a web service to help correc t spelling errors. This preference's value is a boolean, defaulting to <code>fal se</code>."
56 }, 66 },
(...skipping 28 matching lines...) Expand all
85 "$ref": "types.ChromeSetting", 95 "$ref": "types.ChromeSetting",
86 "value": ["protectedContentEnabled", {"type":"boolean"}], 96 "value": ["protectedContentEnabled", {"type":"boolean"}],
87 "description": "<strong>Available on Windows and ChromeOS only</stro ng>: If enabled, Chrome provides a unique ID to plugins in order to run protecte d content. The value of this preference is of type boolean, and the default valu e is <code>true</code>.", 97 "description": "<strong>Available on Windows and ChromeOS only</stro ng>: If enabled, Chrome provides a unique ID to plugins in order to run protecte d content. The value of this preference is of type boolean, and the default valu e is <code>true</code>.",
88 "platforms": ["windows", "cros", "cros touch"] 98 "platforms": ["windows", "cros", "cros touch"]
89 } 99 }
90 } 100 }
91 } 101 }
92 } 102 }
93 } 103 }
94 ] 104 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698