Home | History | Annotate | Download | only in test
      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
      3 // found in the LICENSE file.
      4 
      5 [
      6   {
      7     "namespace": "dependencyTester",
      8     "description": "An API for testing dependencies.",
      9     "dependencies": [ "browserAction", "fontSettings" ],
     10     "types": [],
     11     "functions": [
     12       {
     13         "name": "setTitle",
     14         "type": "function",
     15         "description": "hi",
     16         "parameters": [
     17           {
     18             "name": "details",
     19             "type": "object",
     20             "properties": {
     21               "color": {
     22                 "$ref": "browserAction.ColorArray"
     23               },
     24               "scriptCode": {
     25                 "$ref": "fontSettings.FakeStringType"
     26               }
     27             }
     28           }
     29         ]
     30       }
     31     ]
     32   }
     33 ]
     34