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

Side by Side Diff: chrome/common/extensions/api/webview_tag.json

Issue 2700473003: Support the removal of only session cookies or persistent cookies (Closed)
Patch Set: adding comment Created 3 years, 10 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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": "webviewTag", 7 "namespace": "webviewTag",
8 "description": "Use the <code>webview</code> tag to actively load live conte nt from the web over the network and embed it in your Chrome App. Your app can c ontrol the appearance of the <code>webview</code> and interact with the web cont ent, initiate navigations in an embedded web page, react to error events that ha ppen within it, and more (see <a href=\"#usage\">Usage</a>).", 8 "description": "Use the <code>webview</code> tag to actively load live conte nt from the web over the network and embed it in your Chrome App. Your app can c ontrol the appearance of the <code>webview</code> and interact with the web cont ent, initiate navigations in an embedded web page, react to error events that ha ppen within it, and more (see <a href=\"#usage\">Usage</a>).",
9 "documentation_options": { 9 "documentation_options": {
10 "title": "<webview> Tag", 10 "title": "<webview> Tag",
(...skipping 14 matching lines...) Expand all
25 } 25 }
26 }, 26 },
27 { 27 {
28 "id": "ClearDataTypeSet", 28 "id": "ClearDataTypeSet",
29 "type": "object", 29 "type": "object",
30 "description": "A set of data types. Missing properties are interpreted as <code>false</code>.", 30 "description": "A set of data types. Missing properties are interpreted as <code>false</code>.",
31 "properties": { 31 "properties": {
32 "appcache": { "type": "boolean", "optional": true, "description": "Web sites' appcaches." }, 32 "appcache": { "type": "boolean", "optional": true, "description": "Web sites' appcaches." },
33 "cache": { "type": "boolean", "optional": true, "description": "Since Chrome 43.<br>The browser's cache. Note: when removing data, this clears the ent ire cache; it is not limited to the range you specify." }, 33 "cache": { "type": "boolean", "optional": true, "description": "Since Chrome 43.<br>The browser's cache. Note: when removing data, this clears the ent ire cache; it is not limited to the range you specify." },
34 "cookies": { "type": "boolean", "optional": true, "description": "The partition's cookies." }, 34 "cookies": { "type": "boolean", "optional": true, "description": "The partition's cookies." },
35 "sessionCookies": { "type": "boolean", "optional": true, "description" : "The partition's session cookies." },
36 "persistentCookies": { "type": "boolean", "optional": true, "descripti on": "The partition's persistent cookies." },
35 "fileSystems": { "type": "boolean", "optional": true, "description": " Websites' filesystems." }, 37 "fileSystems": { "type": "boolean", "optional": true, "description": " Websites' filesystems." },
36 "indexedDB": { "type": "boolean", "optional": true, "description": "We bsites' IndexedDB data." }, 38 "indexedDB": { "type": "boolean", "optional": true, "description": "We bsites' IndexedDB data." },
37 "localStorage": { "type": "boolean", "optional": true, "description": "Websites' local storage data." }, 39 "localStorage": { "type": "boolean", "optional": true, "description": "Websites' local storage data." },
38 "webSQL": { "type": "boolean", "optional": true, "description": "Websi tes' WebSQL data." } 40 "webSQL": { "type": "boolean", "optional": true, "description": "Websi tes' WebSQL data." }
39 } 41 }
40 }, 42 },
41 { 43 {
42 "id": "ContextType", 44 "id": "ContextType",
43 "type": "string", 45 "type": "string",
44 "enum": ["all", "page", "frame", "selection", "link", "editable", "image ", "video", "audio"], 46 "enum": ["all", "page", "frame", "selection", "link", "editable", "image ", "video", "audio"],
(...skipping 1376 matching lines...) Expand 10 before | Expand all | Expand 10 after
1421 "$ref": "WebRequestEventInterface", 1423 "$ref": "WebRequestEventInterface",
1422 "description": "Interface which provides access to webRequest events on the guest page." 1424 "description": "Interface which provides access to webRequest events on the guest page."
1423 }, 1425 },
1424 "contextMenus": { 1426 "contextMenus": {
1425 "$ref": "ContextMenus", 1427 "$ref": "ContextMenus",
1426 "description": "Similar to <a href='contextMenus'>chrome's ContextMenus API</a>, but applies to <code>webview</code> instead of browser. Use the <code>w ebview.contextMenus</code> API to add items to <code>webview</code>'s context me nu. You can choose what types of objects your context menu additions apply to, s uch as images, hyperlinks, and pages." 1428 "description": "Similar to <a href='contextMenus'>chrome's ContextMenus API</a>, but applies to <code>webview</code> instead of browser. Use the <code>w ebview.contextMenus</code> API to add items to <code>webview</code>'s context me nu. You can choose what types of objects your context menu additions apply to, s uch as images, hyperlinks, and pages."
1427 } 1429 }
1428 } 1430 }
1429 } 1431 }
1430 ] 1432 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698