OLD | NEW |
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": "browsingData", | 7 "namespace": "browsingData", |
| 8 "description": "Use the <code>chrome.browsingData</code> module to remove br
owsing data from a user's local profile.", |
8 "types": [ | 9 "types": [ |
9 { | 10 { |
10 "id": "RemovalOptions", | 11 "id": "RemovalOptions", |
11 "type": "object", | 12 "type": "object", |
12 "description": "Options that determine exactly what data will be removed
.", | 13 "description": "Options that determine exactly what data will be removed
.", |
13 "properties": { | 14 "properties": { |
14 "since": { | 15 "since": { |
15 "type": "number", | 16 "type": "number", |
16 "optional": true, | 17 "optional": true, |
17 "description": "Remove data accumulated on or after this date, repre
sented in milliseconds since the epoch (accessible via the <code>getTime</code>
method of the JavaScript <code>Date</code> object). If absent, defaults to 0 (wh
ich would remove all browsing data)." | 18 "description": "Remove data accumulated on or after this date, repre
sented in milliseconds since the epoch (accessible via the <code>getTime</code>
method of the JavaScript <code>Date</code> object). If absent, defaults to 0 (wh
ich would remove all browsing data)." |
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 "type": "function", | 380 "type": "function", |
380 "description": "Called when websites' WebSQL databases have been cle
ared.", | 381 "description": "Called when websites' WebSQL databases have been cle
ared.", |
381 "optional": true, | 382 "optional": true, |
382 "parameters": [] | 383 "parameters": [] |
383 } | 384 } |
384 ] | 385 ] |
385 } | 386 } |
386 ] | 387 ] |
387 } | 388 } |
388 ] | 389 ] |
OLD | NEW |