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

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

Issue 23867002: Move dns API to dev channel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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 (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 // See c/c/e/features/* to understand this file, in particular feature.h, 5 // See c/c/e/features/* to understand this file, in particular feature.h,
6 // simple_feature.h, and base_feature_provider.h. 6 // simple_feature.h, and base_feature_provider.h.
7 7
8 { 8 {
9 "activityLogPrivate": { 9 "activityLogPrivate": {
10 "dependencies": ["permission:activityLogPrivate"], 10 "dependencies": ["permission:activityLogPrivate"],
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 }, 151 },
152 "diagnostics": { 152 "diagnostics": {
153 "dependencies": ["permission:diagnostics"], 153 "dependencies": ["permission:diagnostics"],
154 "extension_types": ["platform_app"], 154 "extension_types": ["platform_app"],
155 "contexts": ["blessed_extension"] 155 "contexts": ["blessed_extension"]
156 }, 156 },
157 "dial": { 157 "dial": {
158 "dependencies": ["permission:dial"], 158 "dependencies": ["permission:dial"],
159 "contexts": ["blessed_extension"] 159 "contexts": ["blessed_extension"]
160 }, 160 },
161 "dns": {
162 "dependencies": ["permission:dns"],
163 "contexts": ["blessed_extension"]
164 },
161 "downloads": { 165 "downloads": {
162 "dependencies": ["permission:downloads"], 166 "dependencies": ["permission:downloads"],
163 "contexts": ["blessed_extension"] 167 "contexts": ["blessed_extension"]
164 }, 168 },
165 "downloadsInternal": { 169 "downloadsInternal": {
166 "internal": true, 170 "internal": true,
167 "channel": "stable", 171 "channel": "stable",
168 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 172 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
169 }, 173 },
170 "echoPrivate": { 174 "echoPrivate": {
(...skipping 15 matching lines...) Expand all
186 "matches": ["<all_urls>"] 190 "matches": ["<all_urls>"]
187 }, 191 },
188 "experimental.accessibility": { 192 "experimental.accessibility": {
189 "dependencies": ["permission:experimental"], 193 "dependencies": ["permission:experimental"],
190 "contexts": ["blessed_extension"] 194 "contexts": ["blessed_extension"]
191 }, 195 },
192 "experimental.discovery": { 196 "experimental.discovery": {
193 "dependencies": ["permission:experimental"], 197 "dependencies": ["permission:experimental"],
194 "contexts": ["blessed_extension"] 198 "contexts": ["blessed_extension"]
195 }, 199 },
196 "experimental.dns": {
197 "dependencies": ["permission:experimental"],
198 "contexts": ["blessed_extension"]
199 },
200 "experimental.history": { 200 "experimental.history": {
201 "dependencies": ["permission:history", "permission:experimental"], 201 "dependencies": ["permission:history", "permission:experimental"],
202 "contexts": ["blessed_extension"] 202 "contexts": ["blessed_extension"]
203 }, 203 },
204 "experimental.identity": { 204 "experimental.identity": {
205 "dependencies": ["permission:experimental"], 205 "dependencies": ["permission:experimental"],
206 "contexts": ["blessed_extension"] 206 "contexts": ["blessed_extension"]
207 }, 207 },
208 "experimental.idltest": { 208 "experimental.idltest": {
209 "dependencies": ["permission:experimental"], 209 "dependencies": ["permission:experimental"],
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 "webview": { 596 "webview": {
597 "internal": true, 597 "internal": true,
598 "dependencies": ["permission:webview"], 598 "dependencies": ["permission:webview"],
599 "contexts": ["blessed_extension"] 599 "contexts": ["blessed_extension"]
600 }, 600 },
601 "windows": { 601 "windows": {
602 "dependencies": ["api:tabs"], 602 "dependencies": ["api:tabs"],
603 "contexts": ["blessed_extension"] 603 "contexts": ["blessed_extension"]
604 } 604 }
605 } 605 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698