| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 // This features file defines extension APIs implemented under src/chrome. | 5 // This features file defines extension APIs implemented under src/chrome. |
| 6 // See extensions/common/features/* to understand this file, in particular | 6 // See extensions/common/features/* to understand this file, in particular |
| 7 // feature.h, simple_feature.h, and base_feature_provider.h. | 7 // feature.h, simple_feature.h, and base_feature_provider.h. |
| 8 // | 8 // |
| 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
| 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
| (...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 "contexts": ["blessed_extension"] | 500 "contexts": ["blessed_extension"] |
| 501 }, | 501 }, |
| 502 "gcdPrivate": { | 502 "gcdPrivate": { |
| 503 "dependencies": ["permission:gcdPrivate"], | 503 "dependencies": ["permission:gcdPrivate"], |
| 504 "contexts": ["blessed_extension"] | 504 "contexts": ["blessed_extension"] |
| 505 }, | 505 }, |
| 506 "gcm": { | 506 "gcm": { |
| 507 "dependencies": ["permission:gcm"], | 507 "dependencies": ["permission:gcm"], |
| 508 "contexts": ["blessed_extension"] | 508 "contexts": ["blessed_extension"] |
| 509 }, | 509 }, |
| 510 "hangoutsPrivate": { | |
| 511 "channel": "stable", | |
| 512 "contexts": ["blessed_extension"], | |
| 513 "whitelist": [ | |
| 514 // http://crbug.com/309737. | |
| 515 // Keep this list in sync with extensions_misc::kHangoutsExtensionIds. | |
| 516 "nckgahadagoaajjgafhacjanaoiihapd", // Hangouts Production. | |
| 517 "ljclpkphhpbpinifbeabbhlfddcpfdde", // Hangouts Debug. | |
| 518 "ppleadejekpmccmnpjdimmlfljlkdfej", // Hangouts Alpha. | |
| 519 "eggnbpckecmjlblplehfpjjdhhidfdoj", // Hangouts Beta. | |
| 520 "jfjjdfefebklmdbmenmlehlopoocnoeh", // Hangouts Packaged App Debug. | |
| 521 "knipolnnllmklapflnccelgolnpehhpl" // Hangouts Packaged App Prod. | |
| 522 ] | |
| 523 }, | |
| 524 "history": { | 510 "history": { |
| 525 "dependencies": ["permission:history"], | 511 "dependencies": ["permission:history"], |
| 526 "contexts": ["blessed_extension"] | 512 "contexts": ["blessed_extension"] |
| 527 }, | 513 }, |
| 528 "hotwordPrivate": { | 514 "hotwordPrivate": { |
| 529 "dependencies": ["permission:hotwordPrivate"], | 515 "dependencies": ["permission:hotwordPrivate"], |
| 530 "contexts": ["blessed_extension"] | 516 "contexts": ["blessed_extension"] |
| 531 }, | 517 }, |
| 532 "i18n": { | 518 "i18n": { |
| 533 "channel": "stable", | 519 "channel": "stable", |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 855 "internal": true, | 841 "internal": true, |
| 856 "channel": "stable", | 842 "channel": "stable", |
| 857 "dependencies": ["permission:webview"], | 843 "dependencies": ["permission:webview"], |
| 858 "contexts": ["blessed_extension"] | 844 "contexts": ["blessed_extension"] |
| 859 }, | 845 }, |
| 860 "windows": { | 846 "windows": { |
| 861 "dependencies": ["api:tabs"], | 847 "dependencies": ["api:tabs"], |
| 862 "contexts": ["blessed_extension"] | 848 "contexts": ["blessed_extension"] |
| 863 } | 849 } |
| 864 } | 850 } |
| OLD | NEW |