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

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

Issue 11975015: This adds a private extension API to use for simple networking (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Simplify failure case Created 7 years, 10 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
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 "activeTab": { 6 "activeTab": {
7 "channel": "dev", 7 "channel": "dev",
8 "extension_types": ["extension", "packaged_app"], 8 "extension_types": ["extension", "packaged_app"],
9 "min_manifest_version": 2 9 "min_manifest_version": 2
10 }, 10 },
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 "whitelist": [ 245 "whitelist": [
246 // The file manager is a component extension, and it can currently use 246 // The file manager is a component extension, and it can currently use
247 // whitelisted interfaces without being on the corresponding whitelist. 247 // whitelisted interfaces without being on the corresponding whitelist.
248 // Adding it to this whitelist documents its dependency, however, and also 248 // Adding it to this whitelist documents its dependency, however, and also
249 // doesn't hurt anything. 249 // doesn't hurt anything.
250 "hhaomjibdihmijegdhdafkllkbggdgoj", // File manager 250 "hhaomjibdihmijegdhdafkllkbggdgoj", // File manager
251 "gbkeegbaiigmenfmjfclcdgdpimamgkj", // Quickoffice 251 "gbkeegbaiigmenfmjfclcdgdpimamgkj", // Quickoffice
252 "ionpfmkccalenbmnddpbmocokhaknphg" // Quickoffice dev 252 "ionpfmkccalenbmnddpbmocokhaknphg" // Quickoffice dev
253 ] 253 ]
254 }, 254 },
255 "networkingPrivate": {
256 "channel": "dev",
257 "extension_types": ["extension", "packaged_app"],
258 "location": "component"
259 },
255 "notifications": { 260 "notifications": {
256 "channel": "stable", 261 "channel": "stable",
257 "extension_types": [ 262 "extension_types": [
258 "extension", "packaged_app", "hosted_app", "platform_app" 263 "extension", "packaged_app", "hosted_app", "platform_app"
259 ] 264 ]
260 }, 265 },
261 "echoPrivate": { 266 "echoPrivate": {
262 "channel": "stable", 267 "channel": "stable",
263 "extension_types": ["extension", "packaged_app"], 268 "extension_types": ["extension", "packaged_app"],
264 "location": "component" 269 "location": "component"
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 }, 427 },
423 "webRequestBlocking": { 428 "webRequestBlocking": {
424 "channel": "stable", 429 "channel": "stable",
425 "extension_types": ["extension", "packaged_app"] 430 "extension_types": ["extension", "packaged_app"]
426 }, 431 },
427 "webview": { 432 "webview": {
428 "channel": "stable", 433 "channel": "stable",
429 "extension_types": ["platform_app"] 434 "extension_types": ["platform_app"]
430 } 435 }
431 } 436 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698