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

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

Issue 12996003: Dynamically generate a heading for Extension Docs API pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments - Patch currently being broken up Created 7 years, 6 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 (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": "storage", 7 "namespace": "storage",
8 "description": "Use the <code>chrome.storage</code> module to store, retriev e, and track changes to user data.",
9 "unprivileged": true,
8 "types": [ 10 "types": [
9 { 11 {
10 "id": "StorageChange", 12 "id": "StorageChange",
11 "type": "object", 13 "type": "object",
12 "properties": { 14 "properties": {
13 "oldValue": { 15 "oldValue": {
14 "type": "any", 16 "type": "any",
15 "description": "The old value of the item, if there was an old value .", 17 "description": "The old value of the item, if there was an old value .",
16 "optional": true 18 "optional": true
17 }, 19 },
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 }, 211 },
210 "managed": { 212 "managed": {
211 "$ref": "StorageArea", 213 "$ref": "StorageArea",
212 "description": "Items in the <code>managed</code> storage area are set b y the domain administrator, and are read-only by the extension; trying to modify this namespace results in an error.", 214 "description": "Items in the <code>managed</code> storage area are set b y the domain administrator, and are read-only by the extension; trying to modify this namespace results in an error.",
213 "value": [ "managed" ], 215 "value": [ "managed" ],
214 "nodoc": true 216 "nodoc": true
215 } 217 }
216 } 218 }
217 } 219 }
218 ] 220 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/socket.idl ('k') | chrome/common/extensions/api/sync_file_system.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698