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

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

Issue 10310182: Hack to restrict runtime API to dev channel rather than experimental. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: docs Created 8 years, 7 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 29 matching lines...) Expand all
40 '../api/experimental_font_settings.json', 40 '../api/experimental_font_settings.json',
41 '../api/experimental_identity.json', 41 '../api/experimental_identity.json',
42 '../api/experimental_infobars.json', 42 '../api/experimental_infobars.json',
43 '../api/experimental_input_ui.json', 43 '../api/experimental_input_ui.json',
44 '../api/experimental_input_virtual_keyboard.json', 44 '../api/experimental_input_virtual_keyboard.json',
45 '../api/experimental_keybinding.json', 45 '../api/experimental_keybinding.json',
46 '../api/experimental_media_galleries.json', 46 '../api/experimental_media_galleries.json',
47 '../api/experimental_offscreen_tabs.json', 47 '../api/experimental_offscreen_tabs.json',
48 '../api/experimental_processes.json', 48 '../api/experimental_processes.json',
49 '../api/experimental_rlz.json', 49 '../api/experimental_rlz.json',
50 '../api/experimental_runtime.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',
55 '../api/history.json', 54 '../api/history.json',
56 '../api/i18n.json', 55 '../api/i18n.json',
57 '../api/idle.json', 56 '../api/idle.json',
58 '../api/input_ime.json', 57 '../api/input_ime.json',
59 '../api/input_method_private.json', 58 '../api/input_method_private.json',
60 '../api/managed_mode_private.json', 59 '../api/managed_mode_private.json',
61 '../api/management.json', 60 '../api/management.json',
62 '../api/media_player_private.json', 61 '../api/media_player_private.json',
63 '../api/metrics_private.json', 62 '../api/metrics_private.json',
64 '../api/omnibox.json', 63 '../api/omnibox.json',
65 '../api/page_action.json', 64 '../api/page_action.json',
66 '../api/page_actions.json', 65 '../api/page_actions.json',
67 '../api/page_capture.json', 66 '../api/page_capture.json',
68 '../api/permissions.json', 67 '../api/permissions.json',
69 '../api/privacy.json', 68 '../api/privacy.json',
70 '../api/proxy.json', 69 '../api/proxy.json',
70 '../api/runtime.json',
71 '../api/storage.json', 71 '../api/storage.json',
72 '../api/system_private.json', 72 '../api/system_private.json',
73 '../api/tabs.json', 73 '../api/tabs.json',
74 '../api/test.json', 74 '../api/test.json',
75 '../api/top_sites.json', 75 '../api/top_sites.json',
76 '../api/tts.json', 76 '../api/tts.json',
77 '../api/tts_engine.json', 77 '../api/tts_engine.json',
78 '../api/types.json', 78 '../api/types.json',
79 '../api/web_navigation.json', 79 '../api/web_navigation.json',
80 '../api/web_request.json', 80 '../api/web_request.json',
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
758 } 758 }
759 if (a.name > b.name) { 759 if (a.name > b.name) {
760 return 1; 760 return 1;
761 } 761 }
762 return 0; 762 return 0;
763 } 763 }
764 764
765 function disableDocs(obj) { 765 function disableDocs(obj) {
766 return !!obj.nodoc; 766 return !!obj.nodoc;
767 } 767 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/experimental.runtime.html ('k') | chrome/common/extensions/docs/runtime.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698