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 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 "terminalPrivate": { | 471 "terminalPrivate": { |
472 "platform": "chromeos", | 472 "platform": "chromeos", |
473 "dependencies": ["permission:terminalPrivate"], | 473 "dependencies": ["permission:terminalPrivate"], |
474 "contexts": ["blessed_extension"] | 474 "contexts": ["blessed_extension"] |
475 }, | 475 }, |
476 "test": { | 476 "test": { |
477 "channel": "stable", | 477 "channel": "stable", |
478 "extension_types": "all", | 478 "extension_types": "all", |
479 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 479 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
480 }, | 480 }, |
| 481 "time": { |
| 482 "dependencies": ["permission:time"], |
| 483 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
| 484 }, |
| 485 "time.getTime": { |
| 486 "dependencies": ["permission:time"], |
| 487 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
| 488 }, |
| 489 |
481 "topSites": { | 490 "topSites": { |
482 "dependencies": ["permission:topSites"], | 491 "dependencies": ["permission:topSites"], |
483 "contexts": ["blessed_extension"] | 492 "contexts": ["blessed_extension"] |
484 }, | 493 }, |
485 "tts": { | 494 "tts": { |
486 "dependencies": ["permission:tts"], | 495 "dependencies": ["permission:tts"], |
487 "contexts": ["blessed_extension"] | 496 "contexts": ["blessed_extension"] |
488 }, | 497 }, |
489 "ttsEngine": { | 498 "ttsEngine": { |
490 "dependencies": ["permission:ttsEngine"], | 499 "dependencies": ["permission:ttsEngine"], |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 }, | 544 }, |
536 "webview": { | 545 "webview": { |
537 "dependencies": ["permission:webview"], | 546 "dependencies": ["permission:webview"], |
538 "contexts": ["blessed_extension"] | 547 "contexts": ["blessed_extension"] |
539 }, | 548 }, |
540 "windows": { | 549 "windows": { |
541 "dependencies": ["permission:tabs"], | 550 "dependencies": ["permission:tabs"], |
542 "contexts": ["blessed_extension"] | 551 "contexts": ["blessed_extension"] |
543 } | 552 } |
544 } | 553 } |
OLD | NEW |