| 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> API to remove brows
ing data from a user's local profile.", | 8 "description": "Use the <code>chrome.browsingData</code> API to remove brows
ing data from a user's local profile.", |
| 9 "compiler_options": {"use_movable_types": true}, | |
| 10 "types": [ | 9 "types": [ |
| 11 { | 10 { |
| 12 "id": "RemovalOptions", | 11 "id": "RemovalOptions", |
| 13 "type": "object", | 12 "type": "object", |
| 14 "description": "Options that determine exactly what data will be removed
.", | 13 "description": "Options that determine exactly what data will be removed
.", |
| 15 "properties": { | 14 "properties": { |
| 16 "since": { | 15 "since": { |
| 17 "type": "number", | 16 "type": "number", |
| 18 "optional": true, | 17 "optional": true, |
| 19 "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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 "type": "function", | 385 "type": "function", |
| 387 "description": "Called when websites' WebSQL databases have been cle
ared.", | 386 "description": "Called when websites' WebSQL databases have been cle
ared.", |
| 388 "optional": true, | 387 "optional": true, |
| 389 "parameters": [] | 388 "parameters": [] |
| 390 } | 389 } |
| 391 ] | 390 ] |
| 392 } | 391 } |
| 393 ] | 392 ] |
| 394 } | 393 } |
| 395 ] | 394 ] |
| OLD | NEW |