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

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

Issue 418993002: Remove extra space in extensions api webstore.json (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | no next file » | 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": "webstore", 7 "namespace": "webstore",
8 "description": "Use the <code>chrome.webstore</code> API to initiate app and extension installations \"inline\" from your site.", 8 "description": "Use the <code>chrome.webstore</code> API to initiate app and extension installations \"inline\" from your site.",
9 "types": [ 9 "types": [
10 { 10 {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 { 80 {
81 "description": "The launch feature is not available.", 81 "description": "The launch feature is not available.",
82 "name": "launchFeatureDisabled" 82 "name": "launchFeatureDisabled"
83 }, 83 },
84 { 84 {
85 "description": "The launch feature is not supported for the extensio n type.", 85 "description": "The launch feature is not supported for the extensio n type.",
86 "name": "launchUnsupportedExtensionType" 86 "name": "launchUnsupportedExtensionType"
87 }, 87 },
88 { 88 {
89 "description": "A launch of the same extension is in progress.", 89 "description": "A launch of the same extension is in progress.",
90 "name": " launchInProgress" 90 "name": "launchInProgress"
91 } 91 }
92 ] 92 ]
93 } 93 }
94 ], // types 94 ], // types
95 "events": [ 95 "events": [
96 { 96 {
97 "name": "onInstallStageChanged", 97 "name": "onInstallStageChanged",
98 "description": "Fired when an inline installation enters a new InstallSt age. In order to receive notifications about this event, listeners must be regis tered before the inline installation begins.", 98 "description": "Fired when an inline installation enters a new InstallSt age. In order to receive notifications about this event, listeners must be regis tered before the inline installation begins.",
99 "type": "function", 99 "type": "function",
100 "parameters": [ 100 "parameters": [
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 "description": "The error code from the stable set of possible e rrors." 153 "description": "The error code from the stable set of possible e rrors."
154 } 154 }
155 ], 155 ],
156 "description": "This function is invoked when inline installation do es not successfully complete. Possible reasons for this include the user canceli ng the dialog, the linked item not being found in the store, or the install bein g initiated from a non-verified site." 156 "description": "This function is invoked when inline installation do es not successfully complete. Possible reasons for this include the user canceli ng the dialog, the linked item not being found in the store, or the install bein g initiated from a non-verified site."
157 } 157 }
158 ] 158 ]
159 } // install 159 } // install
160 ] // functions 160 ] // functions
161 } // webstore 161 } // webstore
162 ] 162 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698