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

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: Review comments, cleanup 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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 }, 312 },
313 "systemPrivate": { 313 "systemPrivate": {
314 "channel": "stable", 314 "channel": "stable",
315 "extension_types": ["extension", "packaged_app"], 315 "extension_types": ["extension", "packaged_app"],
316 "location": "component" 316 "location": "component"
317 }, 317 },
318 "tabs": { 318 "tabs": {
319 "channel": "stable", 319 "channel": "stable",
320 "extension_types": ["extension", "packaged_app"] 320 "extension_types": ["extension", "packaged_app"]
321 }, 321 },
322 "tabCapture": { 322 // TODO(justinlin): Remove this and submit separately.
323 "tabCapture": [{
323 "channel": "dev", 324 "channel": "dev",
324 "extension_types": ["extension", "packaged_app"] 325 "extension_types": ["extension", "packaged_app"]
325 }, 326 }, {
327 "channel": "stable",
328 "extension_types": ["extension", "packaged_app"],
329 "whitelist": [
330 "pnhechapfaindjhompbnflcldabbghjo",
331 "okddffdblfhhnmhodogpojmfkjmhinfp"
332 ]
333 }],
326 "terminalPrivate": { 334 "terminalPrivate": {
327 "channel": "stable", 335 "channel": "stable",
328 "extension_types": ["extension", "packaged_app", "platform_app"], 336 "extension_types": ["extension", "packaged_app", "platform_app"],
329 "whitelist": [ 337 "whitelist": [
330 "pnhechapfaindjhompbnflcldabbghjo", // HTerm 338 "pnhechapfaindjhompbnflcldabbghjo", // HTerm
331 "okddffdblfhhnmhodogpojmfkjmhinfp" // HTerm dev 339 "okddffdblfhhnmhodogpojmfkjmhinfp" // HTerm dev
332 ] 340 ]
333 }, 341 },
334 "topSites": { 342 "topSites": {
335 "channel": "stable", 343 "channel": "stable",
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 }, 403 },
396 "webRequestBlocking": { 404 "webRequestBlocking": {
397 "channel": "stable", 405 "channel": "stable",
398 "extension_types": ["extension", "packaged_app"] 406 "extension_types": ["extension", "packaged_app"]
399 }, 407 },
400 "webview": { 408 "webview": {
401 "channel": "stable", 409 "channel": "stable",
402 "extension_types": ["platform_app"] 410 "extension_types": ["platform_app"]
403 } 411 }
404 } 412 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698