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

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

Issue 12089062: Move API functions registrations out of ExtensionFunctionRegistry. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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
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 {
11 "name": "install", 11 "name": "install",
12 "nocompile": true,
12 "description": "Installs the extension corresponding to the given id", 13 "description": "Installs the extension corresponding to the given id",
13 "parameters": [ 14 "parameters": [
14 { 15 {
15 "name": "expected_id", 16 "name": "expected_id",
16 "type": "string", 17 "type": "string",
17 "description": "The id of the extension to install." 18 "description": "The id of the extension to install."
18 }, 19 },
19 { 20 {
20 "name": "callback", 21 "name": "callback",
21 "type": "function", 22 "type": "function",
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 "type": "string", 204 "type": "string",
204 "enum": ["webgl_allowed", "webgl_blocked"] 205 "enum": ["webgl_allowed", "webgl_blocked"]
205 } 206 }
206 ] 207 ]
207 } 208 }
208 ] 209 ]
209 } 210 }
210 ] 211 ]
211 } 212 }
212 ] 213 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698