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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 "contexts": ["blessed_extension"] | 333 "contexts": ["blessed_extension"] |
334 }, | 334 }, |
335 "pageCapture": { | 335 "pageCapture": { |
336 "dependencies": ["permission:pageCapture"], | 336 "dependencies": ["permission:pageCapture"], |
337 "contexts": ["blessed_extension"] | 337 "contexts": ["blessed_extension"] |
338 }, | 338 }, |
339 "pageLauncher": { | 339 "pageLauncher": { |
340 "dependencies": ["manifest:page_launcher"], | 340 "dependencies": ["manifest:page_launcher"], |
341 "contexts": ["blessed_extension"] | 341 "contexts": ["blessed_extension"] |
342 }, | 342 }, |
| 343 "pingPrivate": { |
| 344 "dependencies": ["permission:pingPrivate"], |
| 345 "extension_types": ["platform_app"], |
| 346 "contexts": ["blessed_extension"] |
| 347 }, |
343 "permissions": { | 348 "permissions": { |
344 "channel": "stable", | 349 "channel": "stable", |
345 "extension_types": ["extension", "packaged_app", "platform_app"], | 350 "extension_types": ["extension", "packaged_app", "platform_app"], |
346 "contexts": "all", | 351 "contexts": "all", |
347 "matches": ["<all_urls>"] | 352 "matches": ["<all_urls>"] |
348 }, | 353 }, |
349 "power": { | 354 "power": { |
350 "dependencies": ["permission:power"], | 355 "dependencies": ["permission:power"], |
351 "contexts": ["blessed_extension"] | 356 "contexts": ["blessed_extension"] |
352 }, | 357 }, |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 }, | 540 }, |
536 "webview": { | 541 "webview": { |
537 "dependencies": ["permission:webview"], | 542 "dependencies": ["permission:webview"], |
538 "contexts": ["blessed_extension"] | 543 "contexts": ["blessed_extension"] |
539 }, | 544 }, |
540 "windows": { | 545 "windows": { |
541 "dependencies": ["permission:tabs"], | 546 "dependencies": ["permission:tabs"], |
542 "contexts": ["blessed_extension"] | 547 "contexts": ["blessed_extension"] |
543 } | 548 } |
544 } | 549 } |
OLD | NEW |