Chromium Code Reviews| Index: chrome/common/extensions/api/_api_features.json |
| diff --git a/chrome/common/extensions/api/_api_features.json b/chrome/common/extensions/api/_api_features.json |
| index 4592b0273e28ddf145c742e57fb0afbf6d9ec0b4..00f775496e205182f6cced759f65a0703b107e01 100644 |
| --- a/chrome/common/extensions/api/_api_features.json |
| +++ b/chrome/common/extensions/api/_api_features.json |
| @@ -9,6 +9,15 @@ |
| // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
| // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
| +// To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
| +// |
| +// $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \ |
| +// sha1sum | tr '[:lower:]' '[:upper:]' |
| +// 9A0417016F345C934A1A88F55CA17C05014EEEBA - |
| +// |
| +// Google employees: please update http://go/chrome-api-whitelist to map |
| +// hashes back to ids. |
| + |
| { |
| "accessibilityFeatures": [{ |
| "platforms": ["chromeos"], |
| @@ -32,6 +41,11 @@ |
| "contexts": ["blessed_extension"] |
| }, |
| "app": { |
| + "blacklist": [ |
|
not at google - send to devlin
2014/05/01 20:55:06
thank you!
|
| + "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice |
| + "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal |
| + "12E618C3C6E97495AAECF2AC12DEB082353241C6" // QO component extension |
| + ], |
| "channel": "stable", |
| "extension_types": ["hosted_app", "extension", "legacy_packaged_app"], |
| "contexts": [ |
| @@ -45,12 +59,22 @@ |
| "http://*/*", "https://*/*", "chrome-extension://*/*", "file://*/*" |
| ] |
| }, |
| - "app.runtime": { |
| + "app.runtime": [{ |
| "channel": "stable", |
| "contexts": ["blessed_extension"], |
| "extension_types": ["platform_app"], |
| "noparent": true |
| - }, |
| + }, { |
| + "channel": "stable", |
| + "contexts": ["blessed_extension"], |
| + "extension_types": ["extension"], |
| + "noparent": true, |
| + "whitelist": [ |
| + "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice |
| + "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal |
| + "12E618C3C6E97495AAECF2AC12DEB082353241C6" // QO component extension |
| + ] |
| + }], |
| "app.window": { |
| "channel": "stable", |
| "contexts": ["blessed_extension"], |