OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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": "activityLogPrivate", | 7 "namespace": "activityLogPrivate", |
| 8 "description": "none", |
8 "types": [ | 9 "types": [ |
9 { | 10 { |
10 "id": "DomActivityDetail", | 11 "id": "DomActivityDetail", |
11 "type": "object", | 12 "type": "object", |
12 "description": "Stores the fields associated with an ActivityLog DomActi
on.", | 13 "description": "Stores the fields associated with an ActivityLog DomActi
on.", |
13 "properties": { | 14 "properties": { |
14 "domActivityType": {"type": "string", "enum": ["getter", "setter", "me
thod", "inserted", "xhr", "webrequest", "modified"], "optional": true}, | 15 "domActivityType": {"type": "string", "enum": ["getter", "setter", "me
thod", "inserted", "xhr", "webrequest", "modified"], "optional": true}, |
15 "url": {"type": "string", "optional": true}, | 16 "url": {"type": "string", "optional": true}, |
16 "urlTitle": {"type": "string", "optional": true}, | 17 "urlTitle": {"type": "string", "optional": true}, |
17 "apiCall": {"type": "string", "optional": true}, | 18 "apiCall": {"type": "string", "optional": true}, |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 "parameters": [ | 117 "parameters": [ |
117 { | 118 { |
118 "name": "activity", | 119 "name": "activity", |
119 "$ref": "ExtensionActivity" | 120 "$ref": "ExtensionActivity" |
120 } | 121 } |
121 ] | 122 ] |
122 } | 123 } |
123 ] | 124 ] |
124 } | 125 } |
125 ] | 126 ] |
OLD | NEW |