| OLD | NEW |
| 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 Loading... |
| 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 ] |
| OLD | NEW |