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

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

Issue 10458063: Add sanbdoxed_pages to allow extension/app pages to be served in a sandboxed, unique origin (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CheckCurrentContextAccessToExtensionAPI Created 8 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 | 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 "app": { 6 "app": {
7 "channel": "stable", 7 "channel": "stable",
8 "extension_types": ["packaged_app", "hosted_app", "platform_app"] 8 "extension_types": ["packaged_app", "hosted_app", "platform_app"]
9 }, 9 },
10 "app.launch": { 10 "app.launch": {
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 "plugins": { 184 "plugins": {
185 "channel": "stable", 185 "channel": "stable",
186 "extension_types": ["extension", "packaged_app", "hosted_app"] 186 "extension_types": ["extension", "packaged_app", "hosted_app"]
187 }, 187 },
188 "requirements": { 188 "requirements": {
189 "channel": "stable", 189 "channel": "stable",
190 "extension_types": [ 190 "extension_types": [
191 "extension", "packaged_app", "hosted_app", "platform_app" 191 "extension", "packaged_app", "hosted_app", "platform_app"
192 ] 192 ]
193 }, 193 },
194 "sandboxed_pages": {
195 "channel": "stable",
196 "extension_types": [
197 "extension", "platform_app"
198 ],
199 "min_manifest_version": 2
200 },
194 "signature": { 201 "signature": {
195 "channel": "stable", 202 "channel": "stable",
196 "extension_types": "all" 203 "extension_types": "all"
197 }, 204 },
198 "theme": { 205 "theme": {
199 "channel": "stable", 206 "channel": "stable",
200 "extension_types": ["theme"] 207 "extension_types": ["theme"]
201 }, 208 },
202 "tts_engine": { 209 "tts_engine": {
203 "channel": "stable", 210 "channel": "stable",
204 "extension_types": ["extension", "packaged_app"] 211 "extension_types": ["extension", "packaged_app"]
205 }, 212 },
206 "update_url": { 213 "update_url": {
207 "channel": "stable", 214 "channel": "stable",
208 "extension_types": "all" 215 "extension_types": "all"
209 }, 216 },
210 "version": { 217 "version": {
211 "channel": "stable", 218 "channel": "stable",
212 "extension_types": "all" 219 "extension_types": "all"
213 }, 220 },
214 "web_accessible_resources": { 221 "web_accessible_resources": {
215 "channel": "stable", 222 "channel": "stable",
216 "extension_types": [ 223 "extension_types": [
217 "extension", "packaged_app", "hosted_app" 224 "extension", "packaged_app", "hosted_app"
218 ] 225 ]
219 } 226 }
220 } 227 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698