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

Side by Side Diff: chrome/common/extensions/docs/js/api_page_generator.js

Issue 9721013: Move topSites API out of experimental (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Merge 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
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 * @fileoverview This file is the controller for generating extension 6 * @fileoverview This file is the controller for generating extension
7 * doc pages. 7 * doc pages.
8 * 8 *
9 * It expects to have available via XHR (relative path): 9 * It expects to have available via XHR (relative path):
10 * 1) API_TEMPLATE which is the main template for the api pages. 10 * 1) API_TEMPLATE which is the main template for the api pages.
(...skipping 30 matching lines...) Expand all
41 '../api/experimental.input.ui.json', 41 '../api/experimental.input.ui.json',
42 '../api/experimental.input.virtualKeyboard.json', 42 '../api/experimental.input.virtualKeyboard.json',
43 '../api/experimental.keybinding.json', 43 '../api/experimental.keybinding.json',
44 '../api/experimental.managedMode.json', 44 '../api/experimental.managedMode.json',
45 '../api/experimental.offscreenTabs.json', 45 '../api/experimental.offscreenTabs.json',
46 '../api/experimental.processes.json', 46 '../api/experimental.processes.json',
47 '../api/experimental.rlz.json', 47 '../api/experimental.rlz.json',
48 '../api/experimental.serial.json', 48 '../api/experimental.serial.json',
49 '../api/experimental.socket.json', 49 '../api/experimental.socket.json',
50 '../api/experimental.speechInput.json', 50 '../api/experimental.speechInput.json',
51 '../api/experimental.topSites.json',
52 '../api/experimental.webRequest.json', 51 '../api/experimental.webRequest.json',
53 '../api/extension.json', 52 '../api/extension.json',
54 '../api/fileBrowserHandler.json', 53 '../api/fileBrowserHandler.json',
55 '../api/fileBrowserPrivate.json', 54 '../api/fileBrowserPrivate.json',
56 '../api/history.json', 55 '../api/history.json',
57 '../api/i18n.json', 56 '../api/i18n.json',
58 '../api/idle.json', 57 '../api/idle.json',
59 '../api/input.ime.json', 58 '../api/input.ime.json',
60 '../api/inputMethodPrivate.json', 59 '../api/inputMethodPrivate.json',
61 '../api/management.json', 60 '../api/management.json',
62 '../api/mediaPlayerPrivate.json', 61 '../api/mediaPlayerPrivate.json',
63 '../api/metricsPrivate.json', 62 '../api/metricsPrivate.json',
64 '../api/omnibox.json', 63 '../api/omnibox.json',
65 '../api/pageAction.json', 64 '../api/pageAction.json',
66 '../api/pageActions.json', 65 '../api/pageActions.json',
67 '../api/pageCapture.json', 66 '../api/pageCapture.json',
68 '../api/permissions.json', 67 '../api/permissions.json',
69 '../api/privacy.json', 68 '../api/privacy.json',
70 '../api/proxy.json', 69 '../api/proxy.json',
71 '../api/storage.json', 70 '../api/storage.json',
72 '../api/systemPrivate.json', 71 '../api/systemPrivate.json',
73 '../api/tabs.json', 72 '../api/tabs.json',
74 '../api/test.json', 73 '../api/test.json',
74 '../api/topSites.json',
75 '../api/tts.json', 75 '../api/tts.json',
76 '../api/ttsEngine.json', 76 '../api/ttsEngine.json',
77 '../api/types.json', 77 '../api/types.json',
78 '../api/webNavigation.json', 78 '../api/webNavigation.json',
79 '../api/webRequest.json', 79 '../api/webRequest.json',
80 '../api/webSocketProxyPrivate.json', 80 '../api/webSocketProxyPrivate.json',
81 '../api/webstore.json', 81 '../api/webstore.json',
82 '../api/webstorePrivate.json', 82 '../api/webstorePrivate.json',
83 '../api/windows.json', 83 '../api/windows.json',
84 ] 84 ]
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 } 680 }
681 if (a.name > b.name) { 681 if (a.name > b.name) {
682 return 1; 682 return 1;
683 } 683 }
684 return 0; 684 return 0;
685 } 685 }
686 686
687 function disableDocs(obj) { 687 function disableDocs(obj) {
688 return !!obj.nodoc || !!obj.internal; 688 return !!obj.nodoc || !!obj.internal;
689 } 689 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698