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

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

Issue 9834022: Expand usage of platform-apps flag and permission features. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved switch check to Extension::Create(). Created 8 years, 9 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 "appNotifications": { 6 "appNotifications": {
7 "extension_types": ["packaged_app", "hosted_app"] 7 "extension_types": ["packaged_app", "hosted_app"]
8 }, 8 },
9 "background": { 9 "background": {
10 "extension_types": [ 10 "extension_types": [
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 }, 52 },
53 "cookies": { 53 "cookies": {
54 "extension_types": ["extension", "packaged_app"] 54 "extension_types": ["extension", "packaged_app"]
55 }, 55 },
56 "debugger": { 56 "debugger": {
57 "extension_types": ["extension", "packaged_app", "platform_app"] 57 "extension_types": ["extension", "packaged_app", "platform_app"]
58 }, 58 },
59 "devtools": { 59 "devtools": {
60 "extension_types": ["extension", "packaged_app", "platform_app"] 60 "extension_types": ["extension", "packaged_app", "platform_app"]
61 }, 61 },
62 "dns": {
63 "extension_types": ["platform_app"]
64 },
62 "experimental": { 65 "experimental": {
63 "extension_types": [ 66 "extension_types": [
64 "extension", "packaged_app", "hosted_app", "platform_app" 67 "extension", "packaged_app", "hosted_app", "platform_app"
65 ] 68 ]
66 }, 69 },
67 "fileBrowserHandler": { 70 "fileBrowserHandler": {
68 "extension_types": ["extension", "packaged_app", "platform_app"] 71 "extension_types": ["extension", "packaged_app", "platform_app"]
69 }, 72 },
70 "fileBrowserPrivate": { 73 "fileBrowserPrivate": {
71 "extension_types": ["extension", "packaged_app", "platform_app"], 74 "extension_types": ["extension", "packaged_app", "platform_app"],
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 }, 130 },
128 "plugin": { 131 "plugin": {
129 "extension_types": ["extension", "packaged_app", "platform_app"] 132 "extension_types": ["extension", "packaged_app", "platform_app"]
130 }, 133 },
131 "privacy": { 134 "privacy": {
132 "extension_types": ["extension", "packaged_app", "platform_app"] 135 "extension_types": ["extension", "packaged_app", "platform_app"]
133 }, 136 },
134 "proxy": { 137 "proxy": {
135 "extension_types": ["extension", "packaged_app", "platform_app"] 138 "extension_types": ["extension", "packaged_app", "platform_app"]
136 }, 139 },
140 "serial": {
141 "extension_types": ["platform_app"]
142 },
137 "socket": { 143 "socket": {
138 "extension_types": ["platform_app"] 144 "extension_types": ["platform_app"]
139 }, 145 },
140 "storage": { 146 "storage": {
141 "extension_types": ["extension", "packaged_app", "platform_app"] 147 "extension_types": ["extension", "packaged_app", "platform_app"]
142 }, 148 },
143 "systemPrivate": { 149 "systemPrivate": {
144 "extension_types": ["extension", "packaged_app", "platform_app"], 150 "extension_types": ["extension", "packaged_app", "platform_app"],
145 "location": "component" 151 "location": "component"
146 }, 152 },
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 "afchcafgojfnemjkcbhfekplkmjaldaa" // Enterprise Web Store 191 "afchcafgojfnemjkcbhfekplkmjaldaa" // Enterprise Web Store
186 ] 192 ]
187 }, 193 },
188 "webRequest": { 194 "webRequest": {
189 "extension_types": ["extension", "packaged_app"] 195 "extension_types": ["extension", "packaged_app"]
190 }, 196 },
191 "webRequestBlocking": { 197 "webRequestBlocking": {
192 "extension_types": ["extension", "packaged_app"] 198 "extension_types": ["extension", "packaged_app"]
193 } 199 }
194 } 200 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698