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

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

Issue 10272021: Files generated by the JSON schema compiler are named incorrectly (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Minor changes Created 8 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
OLDNEW
(Empty)
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": "topSites",
8 "types": [
9 {
10 "id": "MostVisitedURL",
11 "type": "object",
12 "description": "An object encapsulating a most visited URL, such as the URLs on the new tab page.",
13 "properties": {
14 "url": {"type": "string", "description": "The most visited URL."},
15 "title": {"type": "string", "description": "The title of the page"}
16 }
17 }
18 ],
19 "functions": [
20 {
21 "name": "get",
22 "type": "function",
23 "description": "Gets a list of top sites.",
24 "parameters": [
25 {
26 "type": "function",
27 "name": "callback",
28 "parameters": [
29 {
30 "type": "array",
31 "name": "data",
32 "items": {"$ref": "MostVisitedURL"}
33 }
34 ]
35 }
36 ]
37 }
38 ]
39 }
40 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/terminal_private.json ('k') | chrome/common/extensions/api/top_sites.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698