| 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 12 matching lines...) Expand all Loading... |
| 23 '../api/alarms.json', // autogenerated | 23 '../api/alarms.json', // autogenerated |
| 24 '../api/bookmarks.json', | 24 '../api/bookmarks.json', |
| 25 '../api/browserAction.json', | 25 '../api/browserAction.json', |
| 26 '../api/browsingData.json', | 26 '../api/browsingData.json', |
| 27 '../api/chromeAuthPrivate.json', | 27 '../api/chromeAuthPrivate.json', |
| 28 '../api/chromeosInfoPrivate.json', | 28 '../api/chromeosInfoPrivate.json', |
| 29 '../api/contentSettings.json', | 29 '../api/contentSettings.json', |
| 30 '../api/contextMenus.json', | 30 '../api/contextMenus.json', |
| 31 '../api/cookies.json', | 31 '../api/cookies.json', |
| 32 '../api/debugger.json', | 32 '../api/debugger.json', |
| 33 '../api/declarative.json', | |
| 34 '../api/declarativeWebRequest.json', | 33 '../api/declarativeWebRequest.json', |
| 35 '../api/devtools.json', | 34 '../api/devtools.json', |
| 35 '../api/events.json', |
| 36 '../api/experimental.accessibility.json', | 36 '../api/experimental.accessibility.json', |
| 37 '../api/experimental.app.json', | 37 '../api/experimental.app.json', |
| 38 '../api/experimental.bookmarkManager.json', | 38 '../api/experimental.bookmarkManager.json', |
| 39 '../api/experimental.downloads.json', | 39 '../api/experimental.downloads.json', |
| 40 '../api/experimental.fontSettings.json', | 40 '../api/experimental.fontSettings.json', |
| 41 '../api/experimental.identity.json', | 41 '../api/experimental.identity.json', |
| 42 '../api/experimental.infobars.json', | 42 '../api/experimental.infobars.json', |
| 43 '../api/experimental.input.ui.json', | 43 '../api/experimental.input.ui.json', |
| 44 '../api/experimental.input.virtualKeyboard.json', | 44 '../api/experimental.input.virtualKeyboard.json', |
| 45 '../api/experimental.keybinding.json', | 45 '../api/experimental.keybinding.json', |
| (...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 } | 756 } |
| 757 if (a.name > b.name) { | 757 if (a.name > b.name) { |
| 758 return 1; | 758 return 1; |
| 759 } | 759 } |
| 760 return 0; | 760 return 0; |
| 761 } | 761 } |
| 762 | 762 |
| 763 function disableDocs(obj) { | 763 function disableDocs(obj) { |
| 764 return !!obj.nodoc; | 764 return !!obj.nodoc; |
| 765 } | 765 } |
| OLD | NEW |