Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / common / extensions / api / preferences_private.json
blobbb234609924051eb297732a883eebf8789eda50b
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6   {
7     "namespace": "preferencesPrivate",
8     "description": "none",
9     "properties": {
10       "easyUnlockProximityRequired": {
11         "nocompile": true,
12         "$ref": "types.private.ChromeDirectSetting",
13         "value": ["easy_unlock.proximity_required", {"type":"boolean"}],
14         "description": "If true, a remote Easy Unlock device can only unlock the local device if it is in very close proximity (roughly, within a foot). This preference's value is a boolean, defaulting to <code>false</code>."
15       },
16       "googleGeolocationAccessEnabled": {
17         "nocompile": true,
18         "$ref": "types.private.ChromeDirectSetting",
19         "value": ["googlegeolocationaccess.enabled", {"type":"boolean"}],
20         "description": "If enabled, Google services can access the user's location. This preference's value is a boolean, defaulting to <code>false</code>."
21       },
22       "dataReductionUpdateDailyLengths": {
23         "nocompile": true,
24         "$ref": "types.private.ChromeDirectSetting",
25         "value": ["data_reduction.update_daily_lengths", {"type":"boolean"}],
26         "description": "Flag to indicate that dataReductionDailyContentLength and dataReductionDailyReceivedLength must be updated with their latest values. This preference's value is a boolean, defaulting to <code>false</code>."
27       }
28     },
29     "functions": [
30       {
31         "name": "getSyncCategoriesWithoutPassphrase",
32         "description": "Returns a list of sync categories the user has enabled without using a custom passphrase for encryption. The possible values are those that can be returned from syncer::ModelTypeToString in sync/syncable/model_type.cc.",
33         "type": "function",
34         "parameters": [
35           {
36             "name": "callback",
37             "type": "function",
38             "parameters": [
39               {
40                 "name": "categories",
41                 "type": "array",
42                 "items": {"type": "string"}
43               }
44             ]
45           }
46         ]
47       }
48     ]
49   }