Chromium Code Reviews| Index: extensions/common/api/runtime.json |
| diff --git a/extensions/common/api/runtime.json b/extensions/common/api/runtime.json |
| index a5a32555750aa2628e45f99e84725605db44a4c8..eb6054e0b144e2eec5b7f4ab89d5c9e013621bf8 100644 |
| --- a/extensions/common/api/runtime.json |
| +++ b/extensions/common/api/runtime.json |
| @@ -352,13 +352,18 @@ |
| "properties": { |
| "reason": { |
| "type": "string", |
| - "enum": ["install", "update", "chrome_update"], |
| + "enum": ["install", "update", "chrome_update", "shared_module_update"], |
| "description": "The reason that this event is being dispatched." |
| }, |
| "previousVersion": { |
| "type": "string", |
| "optional": true, |
| "description": "Indicates the previous version of the extension, which has just been updated. This is present only if 'reason' is 'update'." |
| + }, |
| + "id": { |
| + "type": "string", |
| + "optional": true, |
| + "description": "Indicates the ID of the extension that updated. This is present only if 'reason' is 'shared_module_update'." |
|
asargent_no_longer_on_chrome
2014/06/06 21:07:01
suggestion: "Indicates the ID of the extension tha
elijahtaylor1
2014/06/06 22:41:56
Done.
|
| } |
| } |
| } |