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

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

Issue 10440097: Move socket API from experimental to dev channel and remove some dead code (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Update 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
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 '../../api/experimental_identity.json', // autogenerated 44 '../../api/experimental_identity.json', // autogenerated
45 '../../api/experimental_infobars.json', 45 '../../api/experimental_infobars.json',
46 '../../api/experimental_input_virtual_keyboard.json', 46 '../../api/experimental_input_virtual_keyboard.json',
47 '../../api/experimental_keybinding.json', 47 '../../api/experimental_keybinding.json',
48 '../../api/experimental_media_galleries.json', // autogenerated 48 '../../api/experimental_media_galleries.json', // autogenerated
49 '../../api/experimental_offscreen_tabs.json', 49 '../../api/experimental_offscreen_tabs.json',
50 '../../api/experimental_processes.json', 50 '../../api/experimental_processes.json',
51 '../../api/experimental_rlz.json', 51 '../../api/experimental_rlz.json',
52 '../../api/experimental_serial.json', // autogenerated 52 '../../api/experimental_serial.json', // autogenerated
53 '../../api/experimental_speech_input.json', 53 '../../api/experimental_speech_input.json',
54 '../../api/experimental_socket.json', // autogenerated
55 '../../api/experimental_usb.json', // autogenerated 54 '../../api/experimental_usb.json', // autogenerated
56 '../../api/extension.json', 55 '../../api/extension.json',
57 '../../api/file_browser_handler.json', 56 '../../api/file_browser_handler.json',
58 '../../api/file_browser_private.json', 57 '../../api/file_browser_private.json',
59 '../../api/file_system.json', // autogenerated 58 '../../api/file_system.json', // autogenerated
60 '../../api/font_settings.json', 59 '../../api/font_settings.json',
61 '../../api/history.json', 60 '../../api/history.json',
62 '../../api/i18n.json', 61 '../../api/i18n.json',
63 '../../api/idle.json', 62 '../../api/idle.json',
64 '../../api/input_ime.json', 63 '../../api/input_ime.json',
65 '../../api/input_method_private.json', 64 '../../api/input_method_private.json',
66 '../../api/managed_mode_private.json', 65 '../../api/managed_mode_private.json',
67 '../../api/management.json', 66 '../../api/management.json',
68 '../../api/media_galleries.json', // autogenerated 67 '../../api/media_galleries.json', // autogenerated
69 '../../api/media_player_private.json', 68 '../../api/media_player_private.json',
70 '../../api/metrics_private.json', 69 '../../api/metrics_private.json',
71 '../../api/omnibox.json', 70 '../../api/omnibox.json',
72 '../../api/page_action.json', 71 '../../api/page_action.json',
73 '../../api/page_actions.json', 72 '../../api/page_actions.json',
74 '../../api/page_capture.json', 73 '../../api/page_capture.json',
75 '../../api/permissions.json', 74 '../../api/permissions.json',
76 '../../api/privacy.json', 75 '../../api/privacy.json',
77 '../../api/proxy.json', 76 '../../api/proxy.json',
78 '../../api/runtime.json', 77 '../../api/runtime.json',
79 '../../api/script_badge.json', 78 '../../api/script_badge.json',
79 '../../api/socket.json', // autogenerated
80 '../../api/storage.json', 80 '../../api/storage.json',
81 '../../api/system_private.json', 81 '../../api/system_private.json',
82 '../../api/tabs.json', 82 '../../api/tabs.json',
83 '../../api/test.json', 83 '../../api/test.json',
84 '../../api/top_sites.json', 84 '../../api/top_sites.json',
85 '../../api/tts.json', 85 '../../api/tts.json',
86 '../../api/tts_engine.json', 86 '../../api/tts_engine.json',
87 '../../api/types.json', 87 '../../api/types.json',
88 '../../api/wallpaper_private.json', 88 '../../api/wallpaper_private.json',
89 '../../api/web_navigation.json', 89 '../../api/web_navigation.json',
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
855 } 855 }
856 if (a.name > b.name) { 856 if (a.name > b.name) {
857 return 1; 857 return 1;
858 } 858 }
859 return 0; 859 return 0;
860 } 860 }
861 861
862 function disableDocs(obj) { 862 function disableDocs(obj) {
863 return !!obj.nodoc; 863 return !!obj.nodoc;
864 } 864 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/extensions/socket.html ('k') | chrome/common/extensions/docs/samples.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698