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 23 matching lines...) Expand all Loading... |
34 '../api/devtools.json', | 34 '../api/devtools.json', |
35 '../api/events.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_bookmark_manager.json', | 38 '../api/experimental_bookmark_manager.json', |
39 '../api/experimental_discovery.json', // autogenerated | 39 '../api/experimental_discovery.json', // autogenerated |
40 '../api/experimental_downloads.json', | 40 '../api/experimental_downloads.json', |
41 '../api/experimental_font_settings.json', | 41 '../api/experimental_font_settings.json', |
42 '../api/experimental_identity.json', | 42 '../api/experimental_identity.json', |
43 '../api/experimental_infobars.json', | 43 '../api/experimental_infobars.json', |
44 '../api/experimental_input_ui.json', | |
45 '../api/experimental_input_virtual_keyboard.json', | 44 '../api/experimental_input_virtual_keyboard.json', |
46 '../api/experimental_keybinding.json', | 45 '../api/experimental_keybinding.json', |
47 '../api/experimental_media_galleries.json', | 46 '../api/experimental_media_galleries.json', |
48 '../api/experimental_offscreen_tabs.json', | 47 '../api/experimental_offscreen_tabs.json', |
49 '../api/experimental_processes.json', | 48 '../api/experimental_processes.json', |
50 '../api/experimental_rlz.json', | 49 '../api/experimental_rlz.json', |
51 '../api/experimental_speech_input.json', | 50 '../api/experimental_speech_input.json', |
52 '../api/extension.json', | 51 '../api/extension.json', |
53 '../api/file_browser_handler.json', | 52 '../api/file_browser_handler.json', |
54 '../api/file_browser_private.json', | 53 '../api/file_browser_private.json', |
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
759 } | 758 } |
760 if (a.name > b.name) { | 759 if (a.name > b.name) { |
761 return 1; | 760 return 1; |
762 } | 761 } |
763 return 0; | 762 return 0; |
764 } | 763 } |
765 | 764 |
766 function disableDocs(obj) { | 765 function disableDocs(obj) { |
767 return !!obj.nodoc; | 766 return !!obj.nodoc; |
768 } | 767 } |
OLD | NEW |