Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/extensions. | 5 // This features file defines extension APIs implemented under src/extensions. |
| 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 22 matching lines...) Expand all Loading... | |
| 33 "whitelist": [ | 33 "whitelist": [ |
| 34 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice | 34 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice |
| 35 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal | 35 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal |
| 36 "12E618C3C6E97495AAECF2AC12DEB082353241C6" // QO component extension | 36 "12E618C3C6E97495AAECF2AC12DEB082353241C6" // QO component extension |
| 37 ] | 37 ] |
| 38 }], | 38 }], |
| 39 "dns": { | 39 "dns": { |
| 40 "dependencies": ["permission:dns"], | 40 "dependencies": ["permission:dns"], |
| 41 "contexts": ["blessed_extension"] | 41 "contexts": ["blessed_extension"] |
| 42 }, | 42 }, |
| 43 "extensionTypes": { | |
|
Ken Rockot(use gerrit already)
2014/09/04 01:57:12
Please preserve the "not a real API" disclaimer fr
| |
| 44 "channel": "stable", | |
| 45 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | |
| 46 "contexts": ["blessed_extension"] | |
| 47 }, | |
| 43 "hid": { | 48 "hid": { |
| 44 "dependencies": ["permission:hid"], | 49 "dependencies": ["permission:hid"], |
| 45 "contexts": ["blessed_extension"] | 50 "contexts": ["blessed_extension"] |
| 46 }, | 51 }, |
| 47 "power": { | 52 "power": { |
| 48 "dependencies": ["permission:power"], | 53 "dependencies": ["permission:power"], |
| 49 "contexts": ["blessed_extension"] | 54 "contexts": ["blessed_extension"] |
| 50 }, | 55 }, |
| 51 "runtime": { | 56 "runtime": { |
| 52 "channel": "stable", | 57 "channel": "stable", |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 154 }, | 159 }, |
| 155 "usb": { | 160 "usb": { |
| 156 "dependencies": ["permission:usb"], | 161 "dependencies": ["permission:usb"], |
| 157 "contexts": ["blessed_extension"] | 162 "contexts": ["blessed_extension"] |
| 158 }, | 163 }, |
| 159 "usbPrivate": { | 164 "usbPrivate": { |
| 160 "channel": "dev", | 165 "channel": "dev", |
| 161 "contexts": ["webui"] | 166 "contexts": ["webui"] |
| 162 } | 167 } |
| 163 } | 168 } |
| OLD | NEW |