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 [ | 5 [ |
6 { | 6 { |
7 "namespace": "runtime", | 7 "namespace": "runtime", |
8 "documentation_permissions_required": ["runtime"], | 8 "documentation_permissions_required": ["runtime"], |
9 "properties": { | 9 "properties": { |
10 "lastError": { | 10 "lastError": { |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
110 ], | 110 ], |
111 "events": [ | 111 "events": [ |
112 { | 112 { |
113 "name": "onInstalled", | 113 "name": "onInstalled", |
114 "type": "function", | 114 "type": "function", |
115 "description": "Fired when the extension is first installed." | 115 "description": "Fired when the extension is first installed." |
116 }, | 116 }, |
117 { | 117 { |
118 "name": "onSuspend", | 118 "name": "onSuspend", |
119 "type": "function", | 119 "type": "function", |
120 "description": "Sent to the event page just before it is unloaded. This gives the extension opportunity to do some clean up. Note that since the page is unloading, any asynchronous operations started while handling this event are no t guaranteed to complete." | 120 "description": "Sent to the event page just before it is unloaded. This gives the extension opportunity to do some clean up. Note that since the page is unloading, any asynchronous operations started while handling this event are no t guaranteed to complete. If more activity for the event occurs before it gets u nloaded the onSuspendCanceled event will be sent and the page won't be unloaded. " |
benwells
2012/07/19 04:01:21
...more activity for the event *page* occurs...
koz (OOO until 15th September)
2012/07/19 06:52:11
Done.
| |
121 }, | |
122 { | |
123 "name": "onSuspendCanceled", | |
124 "type": "function", | |
125 "description": "Sent after onSuspend() to indicate that the app won't be unloaded after all." | |
121 } | 126 } |
122 ] | 127 ] |
123 } | 128 } |
124 ] | 129 ] |
OLD | NEW |