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

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

Issue 518653002: Add the "options_ui" extension manifest field. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix everything Created 6 years, 3 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // This features file defines manifest keys implemented under src/extensions. 5 // This features file defines manifest keys implemented under src/extensions.
6 // See extensions/common/features/* to understand this file, in particular 6 // See extensions/common/features/* to understand this file, in particular
7 // feature.h, simple_feature.h, and base_feature_provider.h. 7 // feature.h, simple_feature.h, and base_feature_provider.h.
8 8
9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: 9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash:
10 // 10 //
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 "extension_types": [ 88 "extension_types": [
89 "platform_app" 89 "platform_app"
90 ] 90 ]
91 }, 91 },
92 "offline_enabled": { 92 "offline_enabled": {
93 "channel": "stable", 93 "channel": "stable",
94 "extension_types": [ 94 "extension_types": [
95 "extension", "legacy_packaged_app", "hosted_app", "platform_app" 95 "extension", "legacy_packaged_app", "hosted_app", "platform_app"
96 ] 96 ]
97 }, 97 },
98 "options_ui": {
99 "channel": "trunk",
100 "extension_types": ["extension"]
Yoyo Zhou 2014/08/29 23:06:27 Do we want legacy_packaged_app too? Those also sho
not at google - send to devlin 2014/08/29 23:26:42 I was thinking no, since we don't want to give leg
ericzeng 2014/09/02 18:23:37 Adding legacy packaged apps to the list.
101 },
98 "sandbox": { 102 "sandbox": {
99 "channel": "stable", 103 "channel": "stable",
100 "extension_types": [ 104 "extension_types": [
101 "extension", "platform_app", "legacy_packaged_app" 105 "extension", "platform_app", "legacy_packaged_app"
102 ], 106 ],
103 "min_manifest_version": 2 107 "min_manifest_version": 2
104 }, 108 },
105 "sockets": { 109 "sockets": {
106 "channel": "stable", 110 "channel": "stable",
107 "extension_types": ["platform_app"] 111 "extension_types": ["platform_app"]
(...skipping 10 matching lines...) Expand all
118 "extension_types": ["platform_app"], 122 "extension_types": ["platform_app"],
119 "location": "component" 123 "location": "component"
120 } 124 }
121 ], 125 ],
122 "webview": { 126 "webview": {
123 "channel": "stable", 127 "channel": "stable",
124 "extension_types": ["platform_app"], 128 "extension_types": ["platform_app"],
125 "min_manifest_version": 2 129 "min_manifest_version": 2
126 } 130 }
127 } 131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698