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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
470 "contexts": ["blessed_extension"] | 470 "contexts": ["blessed_extension"] |
471 }, | 471 }, |
472 "serial": { | 472 "serial": { |
473 "dependencies": ["permission:serial"], | 473 "dependencies": ["permission:serial"], |
474 "contexts": ["blessed_extension"] | 474 "contexts": ["blessed_extension"] |
475 }, | 475 }, |
476 "sessions": { | 476 "sessions": { |
477 "dependencies": ["permission:sessions"], | 477 "dependencies": ["permission:sessions"], |
478 "contexts": ["blessed_extension"] | 478 "contexts": ["blessed_extension"] |
479 }, | 479 }, |
480 "signedInDevices": { | |
481 "dependencies": ["permission:signedInDevices"], | |
482 "contexts": ["blessed_extension"] | |
483 }, | |
484 "socket": { | 480 "socket": { |
485 "dependencies": ["permission:socket"], | 481 "dependencies": ["permission:socket"], |
486 "contexts": ["blessed_extension"] | 482 "contexts": ["blessed_extension"] |
487 }, | 483 }, |
488 "sockets.udp": { | 484 "sockets.udp": { |
489 "dependencies": ["permission:sockets.udp"], | 485 "dependencies": ["permission:sockets.udp"], |
490 "channel": "dev", | 486 "channel": "dev", |
491 "contexts": ["blessed_extension"] | 487 "contexts": ["blessed_extension"] |
492 }, | 488 }, |
493 "storage": { | 489 "storage": { |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
609 "webview": { | 605 "webview": { |
610 "internal": true, | 606 "internal": true, |
611 "dependencies": ["permission:webview"], | 607 "dependencies": ["permission:webview"], |
612 "contexts": ["blessed_extension"] | 608 "contexts": ["blessed_extension"] |
613 }, | 609 }, |
614 "windows": { | 610 "windows": { |
615 "dependencies": ["api:tabs"], | 611 "dependencies": ["api:tabs"], |
616 "contexts": ["blessed_extension"] | 612 "contexts": ["blessed_extension"] |
617 } | 613 } |
618 } | 614 } |
OLD | NEW |