OLD | NEW |
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": "experimental.history", | 7 "namespace": "experimental.history", |
| 8 "description": "Use the <code>chrome.experimental.history</code> API to inte
ract with the browser's record of most visited pages.", |
8 "types": [ | 9 "types": [ |
9 { | 10 { |
10 "id": "MostVisitedItem", | 11 "id": "MostVisitedItem", |
11 "type": "object", | 12 "type": "object", |
12 "properties": { | 13 "properties": { |
13 "url": {"type": "string", "description": "The URL navigated to by a u
ser."}, | 14 "url": {"type": "string", "description": "The URL navigated to by a u
ser."}, |
14 "title": {"type": "string", "description": "The title of the page whe
n it was last loaded."} | 15 "title": {"type": "string", "description": "The title of the page whe
n it was last loaded."} |
15 } | 16 } |
16 } | 17 } |
17 ], | 18 ], |
(...skipping 17 matching lines...) Expand all Loading... |
35 "type": "function", | 36 "type": "function", |
36 "parameters": [ | 37 "parameters": [ |
37 { "name": "results", "type": "array", "items": { "$ref": "MostVis
itedItem"} } | 38 { "name": "results", "type": "array", "items": { "$ref": "MostVis
itedItem"} } |
38 ] | 39 ] |
39 } | 40 } |
40 ] | 41 ] |
41 } | 42 } |
42 ] | 43 ] |
43 } | 44 } |
44 ] | 45 ] |
OLD | NEW |