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

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

Issue 15292011: Prevent duplicate webstore install requests being serviced. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 7 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
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":"webstorePrivate", 7 "namespace":"webstorePrivate",
8 "nodoc": "true", 8 "nodoc": "true",
9 "functions": [ 9 "functions": [
10 { 10 {
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 }, 117 },
118 { 118 {
119 "name": "callback", 119 "name": "callback",
120 "type": "function", 120 "type": "function",
121 "description": "Called when the user has either accepted/rejected th e dialog, or some error occurred (such as invalid manifest or icon image data)." , 121 "description": "Called when the user has either accepted/rejected th e dialog, or some error occurred (such as invalid manifest or icon image data)." ,
122 "optional": "true", 122 "optional": "true",
123 "parameters": [ 123 "parameters": [
124 { 124 {
125 "name": "result", 125 "name": "result",
126 "type": "string", 126 "type": "string",
127 "description": "A string result code, which will be empty upon s uccess. The possible values in the case of errors include 'unknown_error', 'user _cancelled', 'manifest_error', 'icon_error', 'invalid_id', 'permission_denied', and 'invalid_icon_url'." 127 "description": "A string result code, which will be empty upon s uccess. The possible values in the case of errors include 'unknown_error', 'user _cancelled', 'manifest_error', 'icon_error', 'invalid_id', 'permission_denied', 'invalid_icon_url', 'signin_failed', and 'already_installed'."
128 } 128 }
129 ] 129 ]
130 } 130 }
131 ] 131 ]
132 132
133 }, 133 },
134 { 134 {
135 "name": "completeInstall", 135 "name": "completeInstall",
136 "description": "", 136 "description": "",
137 "parameters": [ 137 "parameters": [
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 "optional": "false", 235 "optional": "false",
236 "parameters": [ 236 "parameters": [
237 { "name": "is_enabled", "type": "boolean" } 237 { "name": "is_enabled", "type": "boolean" }
238 ] 238 ]
239 } 239 }
240 ] 240 ]
241 } 241 }
242 ] 242 ]
243 } 243 }
244 ] 244 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698