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

Side by Side Diff: third_party/chrome/idl/top_sites.json

Issue 12261015: Import chrome idl into third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « third_party/chrome/idl/test.json ('k') | third_party/chrome/idl/tts.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 | « third_party/chrome/idl/test.json ('k') | third_party/chrome/idl/tts.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698