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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 '../../api/file_browser_private.json', | 58 '../../api/file_browser_private.json', |
59 '../../api/file_system.json', // autogenerated | 59 '../../api/file_system.json', // autogenerated |
60 '../../api/font_settings.json', | 60 '../../api/font_settings.json', |
61 '../../api/history.json', | 61 '../../api/history.json', |
62 '../../api/i18n.json', | 62 '../../api/i18n.json', |
63 '../../api/idle.json', | 63 '../../api/idle.json', |
64 '../../api/input_ime.json', | 64 '../../api/input_ime.json', |
65 '../../api/input_method_private.json', | 65 '../../api/input_method_private.json', |
66 '../../api/managed_mode_private.json', | 66 '../../api/managed_mode_private.json', |
67 '../../api/management.json', | 67 '../../api/management.json', |
| 68 '../../api/media_galleries.json', // autogenerated |
68 '../../api/media_player_private.json', | 69 '../../api/media_player_private.json', |
69 '../../api/metrics_private.json', | 70 '../../api/metrics_private.json', |
70 '../../api/omnibox.json', | 71 '../../api/omnibox.json', |
71 '../../api/page_action.json', | 72 '../../api/page_action.json', |
72 '../../api/page_actions.json', | 73 '../../api/page_actions.json', |
73 '../../api/page_capture.json', | 74 '../../api/page_capture.json', |
74 '../../api/permissions.json', | 75 '../../api/permissions.json', |
75 '../../api/privacy.json', | 76 '../../api/privacy.json', |
76 '../../api/proxy.json', | 77 '../../api/proxy.json', |
77 '../../api/runtime.json', | 78 '../../api/runtime.json', |
(...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
853 } | 854 } |
854 if (a.name > b.name) { | 855 if (a.name > b.name) { |
855 return 1; | 856 return 1; |
856 } | 857 } |
857 return 0; | 858 return 0; |
858 } | 859 } |
859 | 860 |
860 function disableDocs(obj) { | 861 function disableDocs(obj) { |
861 return !!obj.nodoc; | 862 return !!obj.nodoc; |
862 } | 863 } |
OLD | NEW |