diff options
author | kalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-15 23:41:25 +0000 |
---|---|---|
committer | kalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-15 23:41:25 +0000 |
commit | d53cd26661d13748a83f7918b182d97f998f4ed4 (patch) | |
tree | a71677686c486bb1f84f08653a19a40af891ba49 | |
parent | 611f300744675e72623d2814e6df70f051e4f185 (diff) | |
download | chromium_src-d53cd26661d13748a83f7918b182d97f998f4ed4.zip chromium_src-d53cd26661d13748a83f7918b182d97f998f4ed4.tar.gz chromium_src-d53cd26661d13748a83f7918b182d97f998f4ed4.tar.bz2 |
Add the "serviceWorker" key to the browsingData API. Support in the C++ was
added in r288784 but the schema missed out.
BUG=388164
R=jsbell@chromium.org
Review URL: https://codereview.chromium.org/476243003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290053 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/common/extensions/api/browsing_data.json | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/chrome/common/extensions/api/browsing_data.json b/chrome/common/extensions/api/browsing_data.json index 332186d..10fd0b71 100644 --- a/chrome/common/extensions/api/browsing_data.json +++ b/chrome/common/extensions/api/browsing_data.json @@ -96,15 +96,20 @@ "optional": true, "description": "Server-bound certificates." }, + "passwords": { + "type": "boolean", + "optional": true, + "description": "Stored passwords." + }, "pluginData": { "type": "boolean", "optional": true, "description": "Plugins' data." }, - "passwords": { + "serviceWorkers": { "type": "boolean", "optional": true, - "description": "Stored passwords." + "description": "Service Workers." }, "webSQL": { "type": "boolean", |