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

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

Issue 476243003: Add the "serviceWorker" key to the browsingData API. Support in the C++ was (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 (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 "types": [ 9 "types": [
10 { 10 {
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 "localStorage": { 89 "localStorage": {
90 "type": "boolean", 90 "type": "boolean",
91 "optional": true, 91 "optional": true,
92 "description": "Websites' local storage data." 92 "description": "Websites' local storage data."
93 }, 93 },
94 "serverBoundCertificates": { 94 "serverBoundCertificates": {
95 "type": "boolean", 95 "type": "boolean",
96 "optional": true, 96 "optional": true,
97 "description": "Server-bound certificates." 97 "description": "Server-bound certificates."
98 }, 98 },
99 "passwords": {
100 "type": "boolean",
101 "optional": true,
102 "description": "Stored passwords."
103 },
99 "pluginData": { 104 "pluginData": {
100 "type": "boolean", 105 "type": "boolean",
101 "optional": true, 106 "optional": true,
102 "description": "Plugins' data." 107 "description": "Plugins' data."
103 }, 108 },
104 "passwords": { 109 "serviceWorkers": {
105 "type": "boolean", 110 "type": "boolean",
106 "optional": true, 111 "optional": true,
107 "description": "Stored passwords." 112 "description": "Service workers."
jsbell 2014/08/15 20:52:05 Nit: capitalize Service Workers. (per dominicc@)
not at google - send to devlin 2014/08/15 21:41:57 Done.
108 }, 113 },
109 "webSQL": { 114 "webSQL": {
110 "type": "boolean", 115 "type": "boolean",
111 "optional": true, 116 "optional": true,
112 "description": "Websites' WebSQL data." 117 "description": "Websites' WebSQL data."
113 } 118 }
114 } 119 }
115 } 120 }
116 ], 121 ],
117 "functions": [ 122 "functions": [
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 "type": "function", 385 "type": "function",
381 "description": "Called when websites' WebSQL databases have been cle ared.", 386 "description": "Called when websites' WebSQL databases have been cle ared.",
382 "optional": true, 387 "optional": true,
383 "parameters": [] 388 "parameters": []
384 } 389 }
385 ] 390 ]
386 } 391 }
387 ] 392 ]
388 } 393 }
389 ] 394 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698