| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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": "webViewInternal", | 7 "namespace": "webViewInternal", |
| 8 "description": "none", | 8 "description": "none", |
| 9 "compiler_options": { | 9 "compiler_options": { |
| 10 "implemented_in": "extensions/browser/api/guest_view/web_view/web_view_int
ernal_api.h" | 10 "implemented_in": "extensions/browser/api/guest_view/web_view/web_view_int
ernal_api.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 }, | 37 }, |
| 38 "localStorage": { | 38 "localStorage": { |
| 39 "type": "boolean", | 39 "type": "boolean", |
| 40 "optional": true, | 40 "optional": true, |
| 41 "description": "Websites' local storage data." | 41 "description": "Websites' local storage data." |
| 42 }, | 42 }, |
| 43 "webSQL": { | 43 "webSQL": { |
| 44 "type": "boolean", | 44 "type": "boolean", |
| 45 "optional": true, | 45 "optional": true, |
| 46 "description": "Websites' WebSQL data." | 46 "description": "Websites' WebSQL data." |
| 47 }, |
| 48 "cache": { |
| 49 "type": "boolean", |
| 50 "optional": true, |
| 51 "description": "The Websites' cache data. Note: when removing data,
this clears the <em>entire</em> cache: it is not limited to the range you specif
y." |
| 47 } | 52 } |
| 48 } | 53 } |
| 49 }, | 54 }, |
| 50 { | 55 { |
| 51 "id": "RemovalOptions", | 56 "id": "RemovalOptions", |
| 52 "type": "object", | 57 "type": "object", |
| 53 "description": "Options that determine exactly what data will be removed
.", | 58 "description": "Options that determine exactly what data will be removed
.", |
| 54 "properties": { | 59 "properties": { |
| 55 "since": { | 60 "since": { |
| 56 "type": "number", | 61 "type": "number", |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 "type": "function", | 495 "type": "function", |
| 491 "description": "Called when deletion has completed.", | 496 "description": "Called when deletion has completed.", |
| 492 "optional": true, | 497 "optional": true, |
| 493 "parameters": [] | 498 "parameters": [] |
| 494 } | 499 } |
| 495 ] | 500 ] |
| 496 } | 501 } |
| 497 ] | 502 ] |
| 498 } | 503 } |
| 499 ] | 504 ] |
| OLD | NEW |