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

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

Issue 10391034: Scaffolding for an experimental discovery API letting users inject links in the recommended pane of… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Answered review comments from PatchSet 4. 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 18 matching lines...) Expand all
29 '../api/content_settings.json', 29 '../api/content_settings.json',
30 '../api/context_menus.json', 30 '../api/context_menus.json',
31 '../api/cookies.json', 31 '../api/cookies.json',
32 '../api/debugger.json', 32 '../api/debugger.json',
33 '../api/declarative_web_request.json', 33 '../api/declarative_web_request.json',
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_downloads.json', 40 '../api/experimental_downloads.json',
40 '../api/experimental_font_settings.json', 41 '../api/experimental_font_settings.json',
41 '../api/experimental_identity.json', 42 '../api/experimental_identity.json',
42 '../api/experimental_infobars.json', 43 '../api/experimental_infobars.json',
43 '../api/experimental_input_ui.json', 44 '../api/experimental_input_ui.json',
44 '../api/experimental_input_virtual_keyboard.json', 45 '../api/experimental_input_virtual_keyboard.json',
45 '../api/experimental_keybinding.json', 46 '../api/experimental_keybinding.json',
46 '../api/experimental_media_galleries.json', 47 '../api/experimental_media_galleries.json',
47 '../api/experimental_offscreen_tabs.json', 48 '../api/experimental_offscreen_tabs.json',
48 '../api/experimental_processes.json', 49 '../api/experimental_processes.json',
(...skipping 709 matching lines...) Expand 10 before | Expand all | Expand 10 after
758 } 759 }
759 if (a.name > b.name) { 760 if (a.name > b.name) {
760 return 1; 761 return 1;
761 } 762 }
762 return 0; 763 return 0;
763 } 764 }
764 765
765 function disableDocs(obj) { 766 function disableDocs(obj) {
766 return !!obj.nodoc; 767 return !!obj.nodoc;
767 } 768 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/experimental.discovery.html ('k') | chrome/common/extensions/docs/samples.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698