Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Side by Side Diff: chrome/common/extensions/api/runtime.json

Issue 10833070: Fix the chrome.runtime.onInstalled docs to note it fires for updates as well. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/common/extensions/docs/apps/runtime.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 "returns": { 105 "returns": {
106 "type": "string", 106 "type": "string",
107 "description": "The fully-qualified URL to the resource." 107 "description": "The fully-qualified URL to the resource."
108 } 108 }
109 } 109 }
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, and on each update to a new version."
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. If more activity for the event page occurs before it g ets unloaded the onSuspendCanceled event will be sent and the page won't be unlo aded. " 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 page occurs before it g ets unloaded the onSuspendCanceled event will be sent and the page won't be unlo aded. "
121 }, 121 },
122 { 122 {
123 "name": "onSuspendCanceled", 123 "name": "onSuspendCanceled",
124 "type": "function", 124 "type": "function",
125 "description": "Sent after onSuspend() to indicate that the app won't be unloaded after all." 125 "description": "Sent after onSuspend() to indicate that the app won't be unloaded after all."
126 } 126 }
127 ] 127 ]
128 } 128 }
129 ] 129 ]
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/docs/apps/runtime.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698