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

Side by Side Diff: extensions/common/api/test.json

Issue 2409723002: Remove chrome.test.runWithNativesEnabled (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | extensions/renderer/resources/test_custom_bindings.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 ]
OLDNEW
« no previous file with comments | « no previous file | extensions/renderer/resources/test_custom_bindings.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698