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

Side by Side Diff: chrome/common/extensions/api/echo_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": "echoPrivate", 7 "namespace": "echoPrivate",
8 "compiler_options": {
9 "implemented_in": "chrome/browser/chromeos/extensions/echo_private_api.h"
10 },
8 "nodoc": true, 11 "nodoc": true,
9 "platforms": ["chromeos"], 12 "platforms": ["chromeos"],
10 "types": [], 13 "types": [],
11 "functions": [ 14 "functions": [
12 { 15 {
13 "name": "getRegistrationCode", 16 "name": "getRegistrationCode",
14 "description": "Get the group or coupon code from underlying storage.", 17 "description": "Get the group or coupon code from underlying storage.",
15 "type": "function", 18 "type": "function",
16 "parameters": [ 19 "parameters": [
17 { 20 {
(...skipping 10 matching lines...) Expand all
28 "type": "string", 31 "type": "string",
29 "description" : "The coupon code." 32 "description" : "The coupon code."
30 } 33 }
31 ] 34 ]
32 } 35 }
33 ] 36 ]
34 } 37 }
35 ] 38 ]
36 } 39 }
37 ] 40 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698