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

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

Issue 14130005: Remove unintended options_page support from platform apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use manifest features instead, add test case Created 7 years, 8 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 // The default platform app CSP can only be overridden by whitelisted apps. 10 // The default platform app CSP can only be overridden by whitelisted apps.
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 }, 230 },
231 "optional_permissions": { 231 "optional_permissions": {
232 "channel": "stable", 232 "channel": "stable",
233 "extension_types": [ 233 "extension_types": [
234 "extension", "packaged_app", "hosted_app", "platform_app" 234 "extension", "packaged_app", "hosted_app", "platform_app"
235 ] 235 ]
236 }, 236 },
237 "options_page": { 237 "options_page": {
238 "channel": "stable", 238 "channel": "stable",
239 "extension_types": [ 239 "extension_types": [
240 "extension", "packaged_app", "hosted_app", "platform_app" 240 "extension", "packaged_app", "hosted_app"
241 ] 241 ]
242 }, 242 },
243 "oauth2": { 243 "oauth2": {
244 "channel": "stable", 244 "channel": "stable",
245 "extension_types": [ 245 "extension_types": [
246 "extension", "packaged_app", "platform_app" 246 "extension", "packaged_app", "platform_app"
247 ] 247 ]
248 }, 248 },
249 "page_action": { 249 "page_action": {
250 "channel": "stable", 250 "channel": "stable",
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 "channel": "stable", 310 "channel": "stable",
311 "extension_types": "all" 311 "extension_types": "all"
312 }, 312 },
313 "web_accessible_resources": { 313 "web_accessible_resources": {
314 "channel": "stable", 314 "channel": "stable",
315 "extension_types": [ 315 "extension_types": [
316 "extension", "packaged_app", "hosted_app" 316 "extension", "packaged_app", "hosted_app"
317 ] 317 ]
318 } 318 }
319 } 319 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698