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 24 matching lines...) Expand all Loading... |
35 '../api/experimental.app.json', | 35 '../api/experimental.app.json', |
36 '../api/experimental.bookmarkManager.json', | 36 '../api/experimental.bookmarkManager.json', |
37 '../api/experimental.downloads.json', | 37 '../api/experimental.downloads.json', |
38 '../api/experimental.extension.json', | 38 '../api/experimental.extension.json', |
39 '../api/experimental.fontSettings.json', | 39 '../api/experimental.fontSettings.json', |
40 '../api/experimental.infobars.json', | 40 '../api/experimental.infobars.json', |
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.mediaGalleries.json', | |
46 '../api/experimental.offscreenTabs.json', | 45 '../api/experimental.offscreenTabs.json', |
47 '../api/experimental.processes.json', | 46 '../api/experimental.processes.json', |
48 '../api/experimental.rlz.json', | 47 '../api/experimental.rlz.json', |
49 '../api/experimental.serial.json', | 48 '../api/experimental.serial.json', |
50 '../api/experimental.socket.json', | 49 '../api/experimental.socket.json', |
51 '../api/experimental.speechInput.json', | 50 '../api/experimental.speechInput.json', |
52 '../api/experimental.topSites.json', | 51 '../api/experimental.topSites.json', |
53 '../api/experimental.webRequest.json', | 52 '../api/experimental.webRequest.json', |
54 '../api/extension.json', | 53 '../api/extension.json', |
55 '../api/fileBrowserHandler.json', | 54 '../api/fileBrowserHandler.json', |
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
681 } | 680 } |
682 if (a.name > b.name) { | 681 if (a.name > b.name) { |
683 return 1; | 682 return 1; |
684 } | 683 } |
685 return 0; | 684 return 0; |
686 } | 685 } |
687 | 686 |
688 function disableDocs(obj) { | 687 function disableDocs(obj) { |
689 return !!obj.nodoc || !!obj.internal; | 688 return !!obj.nodoc || !!obj.internal; |
690 } | 689 } |
OLD | NEW |