Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: extensions/common/api/web_view_internal.json

Issue 1021073002: <webview> Implement clear http cache API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix compile error on mac/android: std::set initializer list makes them unhappy Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « extensions/browser/guest_view/web_view/web_view_guest_delegate.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 ]
OLDNEW
« no previous file with comments | « extensions/browser/guest_view/web_view/web_view_guest_delegate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698