Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: chrome/common/extensions/docs/js/api_page_generator.js

Issue 10852016: Move serial out of experimental. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 '../../api/experimental_commands.json', 48 '../../api/experimental_commands.json',
49 '../../api/experimental_discovery.json', // autogenerated 49 '../../api/experimental_discovery.json', // autogenerated
50 '../../api/experimental_identity.json', // autogenerated 50 '../../api/experimental_identity.json', // autogenerated
51 '../../api/experimental_infobars.json', 51 '../../api/experimental_infobars.json',
52 '../../api/experimental_input_virtual_keyboard.json', 52 '../../api/experimental_input_virtual_keyboard.json',
53 '../../api/experimental_media_galleries.json', // autogenerated 53 '../../api/experimental_media_galleries.json', // autogenerated
54 '../../api/experimental_offscreen_tabs.json', 54 '../../api/experimental_offscreen_tabs.json',
55 '../../api/experimental_processes.json', 55 '../../api/experimental_processes.json',
56 '../../api/experimental_push_messaging.json', // autogenerated 56 '../../api/experimental_push_messaging.json', // autogenerated
57 '../../api/experimental_rlz.json', 57 '../../api/experimental_rlz.json',
58 '../../api/experimental_serial.json', // autogenerated
59 '../../api/experimental_speech_input.json', 58 '../../api/experimental_speech_input.json',
60 '../../api/experimental_usb.json', // autogenerated 59 '../../api/experimental_usb.json', // autogenerated
61 '../../api/extension.json', 60 '../../api/extension.json',
62 '../../api/file_browser_handler.json', 61 '../../api/file_browser_handler.json',
63 '../../api/file_browser_private.json', 62 '../../api/file_browser_private.json',
64 '../../api/file_system.json', // autogenerated 63 '../../api/file_system.json', // autogenerated
65 '../../api/font_settings.json', 64 '../../api/font_settings.json',
66 '../../api/history.json', 65 '../../api/history.json',
67 '../../api/i18n.json', 66 '../../api/i18n.json',
68 '../../api/idle.json', 67 '../../api/idle.json',
69 '../../api/input_ime.json', 68 '../../api/input_ime.json',
70 '../../api/input_method_private.json', 69 '../../api/input_method_private.json',
71 '../../api/managed_mode_private.json', 70 '../../api/managed_mode_private.json',
72 '../../api/management.json', 71 '../../api/management.json',
73 '../../api/media_galleries.json', // autogenerated 72 '../../api/media_galleries.json', // autogenerated
74 '../../api/media_player_private.json', 73 '../../api/media_player_private.json',
75 '../../api/metrics_private.json', 74 '../../api/metrics_private.json',
76 '../../api/omnibox.json', 75 '../../api/omnibox.json',
77 '../../api/page_action.json', 76 '../../api/page_action.json',
78 '../../api/page_actions.json', 77 '../../api/page_actions.json',
79 '../../api/page_capture.json', 78 '../../api/page_capture.json',
80 '../../api/permissions.json', 79 '../../api/permissions.json',
81 '../../api/privacy.json', 80 '../../api/privacy.json',
82 '../../api/proxy.json', 81 '../../api/proxy.json',
83 '../../api/runtime.json', 82 '../../api/runtime.json',
84 '../../api/script_badge.json', 83 '../../api/script_badge.json',
84 '../../api/serial.json', // autogenerated
85 '../../api/socket.json', // autogenerated 85 '../../api/socket.json', // autogenerated
86 '../../api/storage.json', 86 '../../api/storage.json',
87 '../../api/system_private.json', 87 '../../api/system_private.json',
88 '../../api/tabs.json', 88 '../../api/tabs.json',
89 '../../api/test.json', 89 '../../api/test.json',
90 '../../api/top_sites.json', 90 '../../api/top_sites.json',
91 '../../api/tts.json', 91 '../../api/tts.json',
92 '../../api/tts_engine.json', 92 '../../api/tts_engine.json',
93 '../../api/types.json', 93 '../../api/types.json',
94 '../../api/wallpaper_private.json', 94 '../../api/wallpaper_private.json',
(...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after
853 } 853 }
854 if (a.name > b.name) { 854 if (a.name > b.name) {
855 return 1; 855 return 1;
856 } 856 }
857 return 0; 857 return 0;
858 } 858 }
859 859
860 function disableDocs(obj) { 860 function disableDocs(obj) {
861 return !!obj.nodoc; 861 return !!obj.nodoc;
862 } 862 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698