Revert "Only store leading 13 bits of password hash."
[chromium-blink-merge.git] / chrome / common / extensions / api / data_reduction_proxy.json
blob25ac9ca04de55429e4df314c5810cfaaee5edd14
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
3 // found in the LICENSE file.
6   {
7     "namespace": "dataReductionProxy",
8     "description": "Use the <code>chrome.dataReductionProxy</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 getting and setting Chrome's configuration.",
9     "properties": {
10       "spdyProxyEnabled": {
11         "nocompile": true,
12         "$ref": "types.ChromeSetting",
13         "value": ["spdy_proxy.enabled", {"type":"boolean"}],
14         "description": "Flag to enable data usage reduction by sending requests via data reduction proxy. This preference's value is a boolean, defaulting to <code>false</code>."
15       },
16       "dataReductionDailyContentLength": {
17         "nocompile": true,
18         "$ref": "types.ChromeSetting",
19         "value": ["data_reduction.daily_original_length", {"type":"array"}],
20         "description": "Each item contains the number uncompressed bytes through data reduction proxy per day."
21       },
22       "dataReductionDailyReceivedLength": {
23         "nocompile": true,
24         "$ref": "types.ChromeSetting",
25         "value": ["data_reduction.daily_received_length", {"type":"array"}],
26         "description": "Each item contains the number of compressed bytes through data reduction proxy per day."
27       },
28       "dataReductionUpdateDailyLengths": {
29         "nocompile": true,
30         "$ref": "types.ChromeSetting",
31         "value": ["data_reduction.update_daily_lengths", {"type":"boolean"}],
32         "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>."
33       }
34     }        
35   }