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

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

Issue 10833071: Renaming the 'keybinding' permission to 'commands'. (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 22 matching lines...) Expand all
33 '../../api/cookies.json', 33 '../../api/cookies.json',
34 '../../api/debugger.json', 34 '../../api/debugger.json',
35 '../../api/declarative_web_request.json', 35 '../../api/declarative_web_request.json',
36 '../../api/devtools.json', 36 '../../api/devtools.json',
37 '../../api/downloads.json', // autogenerated 37 '../../api/downloads.json', // autogenerated
38 '../../api/events.json', 38 '../../api/events.json',
39 '../../api/experimental_accessibility.json', 39 '../../api/experimental_accessibility.json',
40 '../../api/experimental_app.json', 40 '../../api/experimental_app.json',
41 '../../api/experimental_bluetooth.json', // autogenerated 41 '../../api/experimental_bluetooth.json', // autogenerated
42 '../../api/experimental_bookmark_manager.json', 42 '../../api/experimental_bookmark_manager.json',
43 '../../api/experimental_commands.json',
43 '../../api/experimental_discovery.json', // autogenerated 44 '../../api/experimental_discovery.json', // autogenerated
44 '../../api/experimental_identity.json', // autogenerated 45 '../../api/experimental_identity.json', // autogenerated
45 '../../api/experimental_infobars.json', 46 '../../api/experimental_infobars.json',
46 '../../api/experimental_input_virtual_keyboard.json', 47 '../../api/experimental_input_virtual_keyboard.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_usb.json', // autogenerated 54 '../../api/experimental_usb.json', // autogenerated
55 '../../api/extension.json', 55 '../../api/extension.json',
56 '../../api/file_browser_handler.json', 56 '../../api/file_browser_handler.json',
57 '../../api/file_browser_private.json', 57 '../../api/file_browser_private.json',
(...skipping 797 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

Powered by Google App Engine
This is Rietveld 408576698