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

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

Issue 14494013: Allow API functions and events to have entries in _api_features.json (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bug in searching for unprivileged Created 7 years, 7 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": "test", 7 "namespace": "test",
8 "nodoc": true, 8 "nodoc": true,
9 "types": [], 9 "types": [],
10 "functions": [ 10 "functions": [
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 "nocompile": true, 285 "nocompile": true,
286 "parameters": [ 286 "parameters": [
287 { 287 {
288 "type": "array", 288 "type": "array",
289 "name": "tests", 289 "name": "tests",
290 "items": {"type": "function"} 290 "items": {"type": "function"}
291 } 291 }
292 ] 292 ]
293 }, 293 },
294 { 294 {
295 "name": "getApiFeatures",
296 "type": "function",
297 "unprivileged": true,
298 "nocompile": true,
299 "parameters": []
300 },
301 {
295 "name": "getApiDefinitions", 302 "name": "getApiDefinitions",
296 "type": "function", 303 "type": "function",
297 "nocompile": true, 304 "nocompile": true,
298 "parameters": [ 305 "parameters": [
299 { 306 {
300 "type": "array", 307 "type": "array",
301 "name": "apiNames", 308 "name": "apiNames",
302 "optional": true, 309 "optional": true,
303 "items": {"type": "string"} 310 "items": {"type": "string"}
304 } 311 }
(...skipping 13 matching lines...) Expand all
318 "properties": { 325 "properties": {
319 "data": { "type": "string", "description": "Additional information ." }, 326 "data": { "type": "string", "description": "Additional information ." },
320 "lastMessage": { "type": "boolean", "description": "True if this w as the last message for this test" } 327 "lastMessage": { "type": "boolean", "description": "True if this w as the last message for this test" }
321 } 328 }
322 } 329 }
323 ] 330 ]
324 } 331 }
325 ] 332 ]
326 } 333 }
327 ] 334 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/runtime.json ('k') | chrome/renderer/extensions/chrome_v8_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698