| 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 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
| 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
| 10 | 10 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 }, | 75 }, |
| 76 "audio": { | 76 "audio": { |
| 77 "dependencies": ["permission:audio"], | 77 "dependencies": ["permission:audio"], |
| 78 "contexts": ["blessed_extension"] | 78 "contexts": ["blessed_extension"] |
| 79 }, | 79 }, |
| 80 "autotestPrivate": { | 80 "autotestPrivate": { |
| 81 "dependencies": ["permission:autotestPrivate"], | 81 "dependencies": ["permission:autotestPrivate"], |
| 82 "contexts": ["blessed_extension"] | 82 "contexts": ["blessed_extension"] |
| 83 }, | 83 }, |
| 84 "bluetooth": { | 84 "bluetooth": { |
| 85 "dependencies": ["permission:bluetooth"], | 85 "dependencies": ["manifest:bluetooth"], |
| 86 "contexts": ["blessed_extension"] | 86 "contexts": ["blessed_extension"] |
| 87 }, | 87 }, |
| 88 "bookmarkManagerPrivate": { | 88 "bookmarkManagerPrivate": { |
| 89 "dependencies": ["permission:bookmarkManagerPrivate"], | 89 "dependencies": ["permission:bookmarkManagerPrivate"], |
| 90 "contexts": ["blessed_extension"] | 90 "contexts": ["blessed_extension"] |
| 91 }, | 91 }, |
| 92 "bookmarks": { | 92 "bookmarks": { |
| 93 "dependencies": ["permission:bookmarks"], | 93 "dependencies": ["permission:bookmarks"], |
| 94 "contexts": ["blessed_extension"] | 94 "contexts": ["blessed_extension"] |
| 95 }, | 95 }, |
| (...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 "internal": true, | 782 "internal": true, |
| 783 "channel": "stable", | 783 "channel": "stable", |
| 784 "dependencies": ["permission:webview"], | 784 "dependencies": ["permission:webview"], |
| 785 "contexts": ["blessed_extension"] | 785 "contexts": ["blessed_extension"] |
| 786 }, | 786 }, |
| 787 "windows": { | 787 "windows": { |
| 788 "dependencies": ["api:tabs"], | 788 "dependencies": ["api:tabs"], |
| 789 "contexts": ["blessed_extension"] | 789 "contexts": ["blessed_extension"] |
| 790 } | 790 } |
| 791 } | 791 } |
| OLD | NEW |