OLD | NEW |
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 13 matching lines...) Expand all Loading... |
24 '../api/browserAction.json', | 24 '../api/browserAction.json', |
25 '../api/browsingData.json', | 25 '../api/browsingData.json', |
26 '../api/chromeAuthPrivate.json', | 26 '../api/chromeAuthPrivate.json', |
27 '../api/chromeosInfoPrivate.json', | 27 '../api/chromeosInfoPrivate.json', |
28 '../api/contentSettings.json', | 28 '../api/contentSettings.json', |
29 '../api/contextMenus.json', | 29 '../api/contextMenus.json', |
30 '../api/cookies.json', | 30 '../api/cookies.json', |
31 '../api/debugger.json', | 31 '../api/debugger.json', |
32 '../api/devtools.json', | 32 '../api/devtools.json', |
33 '../api/experimental.accessibility.json', | 33 '../api/experimental.accessibility.json', |
34 '../api/experimental.alarms.json', | |
35 '../api/experimental.app.json', | 34 '../api/experimental.app.json', |
36 '../api/experimental.bookmarkManager.json', | 35 '../api/experimental.bookmarkManager.json', |
37 '../api/experimental.downloads.json', | 36 '../api/experimental.downloads.json', |
38 '../api/experimental.fontSettings.json', | 37 '../api/experimental.fontSettings.json', |
39 '../api/experimental.identity.json', | 38 '../api/experimental.identity.json', |
40 '../api/experimental.infobars.json', | 39 '../api/experimental.infobars.json', |
41 '../api/experimental.input.ui.json', | 40 '../api/experimental.input.ui.json', |
42 '../api/experimental.input.virtualKeyboard.json', | 41 '../api/experimental.input.virtualKeyboard.json', |
43 '../api/experimental.keybinding.json', | 42 '../api/experimental.keybinding.json', |
44 '../api/experimental.managedMode.json', | 43 '../api/experimental.managedMode.json', |
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
690 } | 689 } |
691 if (a.name > b.name) { | 690 if (a.name > b.name) { |
692 return 1; | 691 return 1; |
693 } | 692 } |
694 return 0; | 693 return 0; |
695 } | 694 } |
696 | 695 |
697 function disableDocs(obj) { | 696 function disableDocs(obj) { |
698 return !!obj.nodoc || !!obj.internal; | 697 return !!obj.nodoc || !!obj.internal; |
699 } | 698 } |
OLD | NEW |