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.topSites.json

Issue 9721013: Move topSites API out of experimental (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Added curlies Created 8 years, 9 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": "experimental.topSites",
8 "nodoc": true,
9 "types": [],
10 "functions": [
11 {
12 "name": "get",
13 "type": "function",
14 "description": "Gets a list of top sites.",
15 "parameters": [
16 {
17 "type": "function",
18 "name": "callback",
19 "parameters": [
20 {
21 "type": "array",
22 "name": "data",
23 "items": {
24 "type": "object",
25 "properties": {
26 "title": {
27 "type": "string",
28 "description": "Page title"
29 },
30 "url": {
31 "type": "string",
32 "description": "Page url"
33 }
34 }
35 }
36 }
37 ]
38 }
39 ]
40 }
41 ]
42 }
43 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698