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

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

Issue 9465005: Updating the doc to reflect the new experimental.keybinding API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 10 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/devtools.json', 33 '../api/devtools.json',
34 '../api/experimental.accessibility.json', 34 '../api/experimental.accessibility.json',
35 '../api/experimental.app.json', 35 '../api/experimental.app.json',
36 '../api/experimental.bookmarkManager.json', 36 '../api/experimental.bookmarkManager.json',
37 '../api/experimental.dns.json', 37 '../api/experimental.dns.json',
38 '../api/experimental.downloads.json', 38 '../api/experimental.downloads.json',
39 '../api/experimental.extension.json', 39 '../api/experimental.extension.json',
40 '../api/experimental.infobars.json', 40 '../api/experimental.infobars.json',
41 '../api/experimental.input.ui.json', 41 '../api/experimental.input.ui.json',
42 '../api/experimental.input.virtualKeyboard.json', 42 '../api/experimental.input.virtualKeyboard.json',
43 '../api/experimental.keybinding.json',
43 '../api/experimental.processes.json', 44 '../api/experimental.processes.json',
44 '../api/experimental.rlz.json', 45 '../api/experimental.rlz.json',
45 '../api/experimental.serial.json', 46 '../api/experimental.serial.json',
46 '../api/experimental.socket.json', 47 '../api/experimental.socket.json',
47 '../api/experimental.speechInput.json', 48 '../api/experimental.speechInput.json',
48 '../api/experimental.topSites.json', 49 '../api/experimental.topSites.json',
49 '../api/extension.json', 50 '../api/extension.json',
50 '../api/fileBrowserHandler.json', 51 '../api/fileBrowserHandler.json',
51 '../api/fileBrowserPrivate.json', 52 '../api/fileBrowserPrivate.json',
52 '../api/history.json', 53 '../api/history.json',
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after
669 } 670 }
670 if (a.name > b.name) { 671 if (a.name > b.name) {
671 return 1; 672 return 1;
672 } 673 }
673 return 0; 674 return 0;
674 } 675 }
675 676
676 function disableDocs(obj) { 677 function disableDocs(obj) {
677 return !!obj.nodoc || !!obj.internal; 678 return !!obj.nodoc || !!obj.internal;
678 } 679 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698