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

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

Issue 11826048: Revert 176015 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 | « chrome/common/extensions/api/i18n.json ('k') | chrome/common/extensions/api/windows.json » ('j') | 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": "storage", 7 "namespace": "storage",
8 "unprivileged": true, 8 "unprivileged": true,
9 "compiler_options": {
10 "generate_type_functions": true
11 },
12 "types": [ 9 "types": [
13 { 10 {
14 "id": "StorageChange", 11 "id": "StorageChange",
15 "type": "object", 12 "type": "object",
16 "properties": { 13 "properties": {
17 "oldValue": { 14 "oldValue": {
18 "type": "any", 15 "type": "any",
19 "description": "The old value of the item, if there was an old value .", 16 "description": "The old value of the item, if there was an old value .",
20 "optional": true 17 "optional": true
21 }, 18 },
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 }, 209 },
213 "managed": { 210 "managed": {
214 "$ref": "StorageArea", 211 "$ref": "StorageArea",
215 "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.", 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.",
216 "value": [ "managed" ], 213 "value": [ "managed" ],
217 "nodoc": true 214 "nodoc": true
218 } 215 }
219 } 216 }
220 } 217 }
221 ] 218 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/i18n.json ('k') | chrome/common/extensions/api/windows.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698