| 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 "contexts": ["blessed_extension"] | 339 "contexts": ["blessed_extension"] |
| 340 }, | 340 }, |
| 341 "pageActions": { | 341 "pageActions": { |
| 342 "dependencies": ["manifest:page_actions"], | 342 "dependencies": ["manifest:page_actions"], |
| 343 "contexts": ["blessed_extension"] | 343 "contexts": ["blessed_extension"] |
| 344 }, | 344 }, |
| 345 "pageCapture": { | 345 "pageCapture": { |
| 346 "dependencies": ["permission:pageCapture"], | 346 "dependencies": ["permission:pageCapture"], |
| 347 "contexts": ["blessed_extension"] | 347 "contexts": ["blessed_extension"] |
| 348 }, | 348 }, |
| 349 "pageLauncher": { | |
| 350 "dependencies": ["manifest:page_launcher"], | |
| 351 "contexts": ["blessed_extension"] | |
| 352 }, | |
| 353 "permissions": { | 349 "permissions": { |
| 354 "channel": "stable", | 350 "channel": "stable", |
| 355 "extension_types": ["extension", "packaged_app", "platform_app"], | 351 "extension_types": ["extension", "packaged_app", "platform_app"], |
| 356 "contexts": "all", | 352 "contexts": "all", |
| 357 "matches": ["<all_urls>"] | 353 "matches": ["<all_urls>"] |
| 358 }, | 354 }, |
| 359 "power": { | 355 "power": { |
| 360 "dependencies": ["permission:power"], | 356 "dependencies": ["permission:power"], |
| 361 "contexts": ["blessed_extension"] | 357 "contexts": ["blessed_extension"] |
| 362 }, | 358 }, |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 }, | 566 }, |
| 571 "webview": { | 567 "webview": { |
| 572 "dependencies": ["permission:webview"], | 568 "dependencies": ["permission:webview"], |
| 573 "contexts": ["blessed_extension"] | 569 "contexts": ["blessed_extension"] |
| 574 }, | 570 }, |
| 575 "windows": { | 571 "windows": { |
| 576 "dependencies": ["permission:tabs"], | 572 "dependencies": ["permission:tabs"], |
| 577 "contexts": ["blessed_extension"] | 573 "contexts": ["blessed_extension"] |
| 578 } | 574 } |
| 579 } | 575 } |
| OLD | NEW |