| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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": "test", | 7 "namespace": "test", |
| 8 "description": "none", | 8 "description": "none", |
| 9 "functions": [ | 9 "functions": [ |
| 10 { | 10 { |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 }, | 131 }, |
| 132 { | 132 { |
| 133 "name": "succeed", | 133 "name": "succeed", |
| 134 "type": "function", | 134 "type": "function", |
| 135 "nocompile": true, | 135 "nocompile": true, |
| 136 "parameters": [ | 136 "parameters": [ |
| 137 {"type": "any", "name": "message", "optional": true} | 137 {"type": "any", "name": "message", "optional": true} |
| 138 ] | 138 ] |
| 139 }, | 139 }, |
| 140 { | 140 { |
| 141 "name": "runWithNativesEnabled", | |
| 142 "type": "function", | |
| 143 "nocompile": true, | |
| 144 "description": "Runs the given function with access to native methods en
abled.", | |
| 145 "parameters": [ | |
| 146 { | |
| 147 "type": "function", | |
| 148 "name": "callback" | |
| 149 } | |
| 150 ] | |
| 151 }, | |
| 152 { | |
| 153 "name": "getModuleSystem", | 141 "name": "getModuleSystem", |
| 154 "type": "function", | 142 "type": "function", |
| 155 "nocompile": true, | 143 "nocompile": true, |
| 156 "description": "Returns an instance of the module system for the given c
ontext.", | 144 "description": "Returns an instance of the module system for the given c
ontext.", |
| 157 "parameters": [ | 145 "parameters": [ |
| 158 { | 146 { |
| 159 "type": "any", | 147 "type": "any", |
| 160 "name": "context" | 148 "name": "context" |
| 161 } | 149 } |
| 162 ], | 150 ], |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 "properties": { | 416 "properties": { |
| 429 "data": { "type": "string", "description": "Additional information
." }, | 417 "data": { "type": "string", "description": "Additional information
." }, |
| 430 "lastMessage": { "type": "boolean", "description": "True if this w
as the last message for this test" } | 418 "lastMessage": { "type": "boolean", "description": "True if this w
as the last message for this test" } |
| 431 } | 419 } |
| 432 } | 420 } |
| 433 ] | 421 ] |
| 434 } | 422 } |
| 435 ] | 423 ] |
| 436 } | 424 } |
| 437 ] | 425 ] |
| OLD | NEW |