| OLD | NEW |
| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 "contexts": ["blessed_extension"] | 202 "contexts": ["blessed_extension"] |
| 203 }, | 203 }, |
| 204 "experimental.record": { | 204 "experimental.record": { |
| 205 "dependencies": ["permission:experimental"], | 205 "dependencies": ["permission:experimental"], |
| 206 "contexts": ["blessed_extension"] | 206 "contexts": ["blessed_extension"] |
| 207 }, | 207 }, |
| 208 "experimental.rlz": { | 208 "experimental.rlz": { |
| 209 "dependencies": ["permission:experimental"], | 209 "dependencies": ["permission:experimental"], |
| 210 "contexts": ["blessed_extension"] | 210 "contexts": ["blessed_extension"] |
| 211 }, | 211 }, |
| 212 "experimental.systemInfo.storage": { | |
| 213 "dependencies": ["permission:experimental"], | |
| 214 "contexts": ["blessed_extension"] | |
| 215 }, | |
| 216 "extension": { | 212 "extension": { |
| 217 "channel": "stable", | 213 "channel": "stable", |
| 218 "extension_types": ["extension", "packaged_app"], | 214 "extension_types": ["extension", "packaged_app"], |
| 219 "contexts": ["blessed_extension"] | 215 "contexts": ["blessed_extension"] |
| 220 }, | 216 }, |
| 221 "extension.getURL": { | 217 "extension.getURL": { |
| 222 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 218 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
| 223 }, | 219 }, |
| 224 "extension.inIncognitoContext": { | 220 "extension.inIncognitoContext": { |
| 225 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 221 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 "contexts": ["blessed_extension"] | 459 "contexts": ["blessed_extension"] |
| 464 }, | 460 }, |
| 465 "system.display": { | 461 "system.display": { |
| 466 "dependencies": ["permission:system.display"], | 462 "dependencies": ["permission:system.display"], |
| 467 "contexts": ["blessed_extension"] | 463 "contexts": ["blessed_extension"] |
| 468 }, | 464 }, |
| 469 "system.memory": { | 465 "system.memory": { |
| 470 "dependencies": ["permission:system.memory"], | 466 "dependencies": ["permission:system.memory"], |
| 471 "contexts": ["blessed_extension"] | 467 "contexts": ["blessed_extension"] |
| 472 }, | 468 }, |
| 469 "system.storage": { |
| 470 "dependencies": ["permission:system.storage"], |
| 471 "contexts": ["blessed_extension"] |
| 472 }, |
| 473 "system.storage.addAvailableCapacityWatch": { |
| 474 "channel": "dev" |
| 475 }, |
| 476 "system.storage.removeAvailableCapacityWatch": { |
| 477 "channel": "dev" |
| 478 }, |
| 479 "system.storage.getAllAvailableCapacityWatches": { |
| 480 "channel": "dev" |
| 481 }, |
| 482 "system.storage.removeAllAvailableCapacityWatches": { |
| 483 "channel": "dev" |
| 484 }, |
| 485 "system.storage.onAvailableCapacityChanged": { |
| 486 "channel": "dev" |
| 487 }, |
| 473 "systemPrivate": { | 488 "systemPrivate": { |
| 474 "dependencies": ["permission:systemPrivate"], | 489 "dependencies": ["permission:systemPrivate"], |
| 475 "contexts": ["blessed_extension"] | 490 "contexts": ["blessed_extension"] |
| 476 }, | 491 }, |
| 477 "tabCapture": { | 492 "tabCapture": { |
| 478 "dependencies": ["permission:tabCapture"], | 493 "dependencies": ["permission:tabCapture"], |
| 479 "contexts": ["blessed_extension"] | 494 "contexts": ["blessed_extension"] |
| 480 }, | 495 }, |
| 481 "tabs": { | 496 "tabs": { |
| 482 "channel": "stable", | 497 "channel": "stable", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 }, | 570 }, |
| 556 "webview": { | 571 "webview": { |
| 557 "dependencies": ["permission:webview"], | 572 "dependencies": ["permission:webview"], |
| 558 "contexts": ["blessed_extension"] | 573 "contexts": ["blessed_extension"] |
| 559 }, | 574 }, |
| 560 "windows": { | 575 "windows": { |
| 561 "dependencies": ["permission:tabs"], | 576 "dependencies": ["permission:tabs"], |
| 562 "contexts": ["blessed_extension"] | 577 "contexts": ["blessed_extension"] |
| 563 } | 578 } |
| 564 } | 579 } |
| OLD | NEW |