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

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

Issue 16876004: Updating JSON Schema Compiler to add description field to schemas. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: (kalman) rebase Created 7 years, 6 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
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": "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
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 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/experimental_dns.idl ('k') | chrome/common/extensions/api/experimental_identity.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698