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

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

Issue 10310182: Hack to restrict runtime API to dev channel rather than experimental. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: docs Created 8 years, 7 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/chrome_renderer.gypi ('k') | chrome/common/extensions/api/experimental_runtime.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 "alarms": { 6 "alarms": {
7 "channel": "dev", 7 "channel": "dev",
8 "extension_types": ["extension", "packaged_app", "platform_app"], 8 "extension_types": ["extension", "packaged_app", "platform_app"],
9 "min_manifest_version": 2 9 "min_manifest_version": 2
10 }, 10 },
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 "extension_types": ["extension", "packaged_app", "platform_app"] 180 "extension_types": ["extension", "packaged_app", "platform_app"]
181 }, 181 },
182 "privacy": { 182 "privacy": {
183 "channel": "stable", 183 "channel": "stable",
184 "extension_types": ["extension", "packaged_app", "platform_app"] 184 "extension_types": ["extension", "packaged_app", "platform_app"]
185 }, 185 },
186 "proxy": { 186 "proxy": {
187 "channel": "stable", 187 "channel": "stable",
188 "extension_types": ["extension", "packaged_app", "platform_app"] 188 "extension_types": ["extension", "packaged_app", "platform_app"]
189 }, 189 },
190 // Note: runtime is not actually a permission, but some systems check these
191 // values to verify restrictions.
192 "runtime": {
193 "channel": "dev",
194 "extension_types": ["extension", "packaged_app", "platform_app"],
195 "min_manifest_version": 2
196 },
190 "serial": { 197 "serial": {
191 "channel": "stable", 198 "channel": "stable",
192 "extension_types": ["platform_app"] 199 "extension_types": ["platform_app"]
193 }, 200 },
194 "socket": { 201 "socket": {
195 "channel": "stable", 202 "channel": "stable",
196 "extension_types": ["platform_app"] 203 "extension_types": ["platform_app"]
197 }, 204 },
198 "storage": { 205 "storage": {
199 "channel": "stable", 206 "channel": "stable",
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 }, 271 },
265 "webRequest": { 272 "webRequest": {
266 "channel": "stable", 273 "channel": "stable",
267 "extension_types": ["extension", "packaged_app"] 274 "extension_types": ["extension", "packaged_app"]
268 }, 275 },
269 "webRequestBlocking": { 276 "webRequestBlocking": {
270 "channel": "stable", 277 "channel": "stable",
271 "extension_types": ["extension", "packaged_app"] 278 "extension_types": ["extension", "packaged_app"]
272 } 279 }
273 } 280 }
OLDNEW
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/common/extensions/api/experimental_runtime.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698