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

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

Issue 11316164: Implement ComplexFeature to support permission features with multiple rules. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: new Created 8 years 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 "activeTab": { 6 "activeTab": {
7 "channel": "dev", 7 "channel": "dev",
8 "extension_types": ["extension", "packaged_app"], 8 "extension_types": ["extension", "packaged_app"],
9 "min_manifest_version": 2 9 "min_manifest_version": 2
10 }, 10 },
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 }, 308 },
309 "systemPrivate": { 309 "systemPrivate": {
310 "channel": "stable", 310 "channel": "stable",
311 "extension_types": ["extension", "packaged_app"], 311 "extension_types": ["extension", "packaged_app"],
312 "location": "component" 312 "location": "component"
313 }, 313 },
314 "tabs": { 314 "tabs": {
315 "channel": "stable", 315 "channel": "stable",
316 "extension_types": ["extension", "packaged_app"] 316 "extension_types": ["extension", "packaged_app"]
317 }, 317 },
318 "tabCapture": { 318 "tabCapture": [{
319 "channel": "dev", 319 "channel": "dev",
320 "extension_types": ["extension", "packaged_app"] 320 "extension_types": ["extension", "packaged_app"]
321 }, 321 }, {
322 "channel": "stable",
323 "extension_types": ["extension", "packaged_app"],
324 "whitelist": [
325 "pnhechapfaindjhompbnflcldabbghjo",
326 "okddffdblfhhnmhodogpojmfkjmhinfp"
327 ]
328 }],
322 "terminalPrivate": { 329 "terminalPrivate": {
323 "channel": "stable", 330 "channel": "stable",
324 "extension_types": ["extension", "packaged_app", "platform_app"], 331 "extension_types": ["extension", "packaged_app", "platform_app"],
325 "whitelist": [ 332 "whitelist": [
326 "pnhechapfaindjhompbnflcldabbghjo", // HTerm 333 "pnhechapfaindjhompbnflcldabbghjo", // HTerm
327 "okddffdblfhhnmhodogpojmfkjmhinfp" // HTerm dev 334 "okddffdblfhhnmhodogpojmfkjmhinfp" // HTerm dev
328 ] 335 ]
329 }, 336 },
330 "topSites": { 337 "topSites": {
331 "channel": "stable", 338 "channel": "stable",
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 }, 398 },
392 "webRequestBlocking": { 399 "webRequestBlocking": {
393 "channel": "stable", 400 "channel": "stable",
394 "extension_types": ["extension", "packaged_app"] 401 "extension_types": ["extension", "packaged_app"]
395 }, 402 },
396 "webview": { 403 "webview": {
397 "channel": "dev", 404 "channel": "dev",
398 "extension_types": ["platform_app"] 405 "extension_types": ["platform_app"]
399 } 406 }
400 } 407 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698