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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 "contexts": ["blessed_extension"] | 458 "contexts": ["blessed_extension"] |
459 }, | 459 }, |
460 "serial": { | 460 "serial": { |
461 "dependencies": ["permission:serial"], | 461 "dependencies": ["permission:serial"], |
462 "contexts": ["blessed_extension"] | 462 "contexts": ["blessed_extension"] |
463 }, | 463 }, |
464 "sessionRestore": { | 464 "sessionRestore": { |
465 "dependencies": ["permission:sessionRestore"], | 465 "dependencies": ["permission:sessionRestore"], |
466 "contexts": ["blessed_extension"] | 466 "contexts": ["blessed_extension"] |
467 }, | 467 }, |
| 468 "signedInDevices": { |
| 469 "dependencies": ["permission:signedInDevices"], |
| 470 "contexts": ["blessed_extension"] |
| 471 }. |
468 "socket": { | 472 "socket": { |
469 "dependencies": ["permission:socket"], | 473 "dependencies": ["permission:socket"], |
470 "contexts": ["blessed_extension"] | 474 "contexts": ["blessed_extension"] |
471 }, | 475 }, |
472 "storage": { | 476 "storage": { |
473 "dependencies": ["permission:storage"], | 477 "dependencies": ["permission:storage"], |
474 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 478 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
475 }, | 479 }, |
476 "streamsPrivate": { | 480 "streamsPrivate": { |
477 "dependencies": ["permission:streamsPrivate"], | 481 "dependencies": ["permission:streamsPrivate"], |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
597 }, | 601 }, |
598 "webview": { | 602 "webview": { |
599 "dependencies": ["permission:webview"], | 603 "dependencies": ["permission:webview"], |
600 "contexts": ["blessed_extension"] | 604 "contexts": ["blessed_extension"] |
601 }, | 605 }, |
602 "windows": { | 606 "windows": { |
603 "dependencies": ["permission:tabs"], | 607 "dependencies": ["permission:tabs"], |
604 "contexts": ["blessed_extension"] | 608 "contexts": ["blessed_extension"] |
605 } | 609 } |
606 } | 610 } |
OLD | NEW |