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

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

Issue 9566007: Initial Managed Mode extension API, supporting querying the setting and a stub for enabling the mod… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Now with 12.5% more added files (including missing apitest) Created 8 years, 9 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 '../api/experimental.speechInput.json', 48 '../api/experimental.speechInput.json',
49 '../api/experimental.topSites.json', 49 '../api/experimental.topSites.json',
50 '../api/extension.json', 50 '../api/extension.json',
51 '../api/fileBrowserHandler.json', 51 '../api/fileBrowserHandler.json',
52 '../api/fileBrowserPrivate.json', 52 '../api/fileBrowserPrivate.json',
53 '../api/history.json', 53 '../api/history.json',
54 '../api/i18n.json', 54 '../api/i18n.json',
55 '../api/idle.json', 55 '../api/idle.json',
56 '../api/input.ime.json', 56 '../api/input.ime.json',
57 '../api/inputMethodPrivate.json', 57 '../api/inputMethodPrivate.json',
58 '../api/managedMode.json',
58 '../api/management.json', 59 '../api/management.json',
59 '../api/mediaPlayerPrivate.json', 60 '../api/mediaPlayerPrivate.json',
60 '../api/metricsPrivate.json', 61 '../api/metricsPrivate.json',
61 '../api/omnibox.json', 62 '../api/omnibox.json',
62 '../api/pageAction.json', 63 '../api/pageAction.json',
63 '../api/pageActions.json', 64 '../api/pageActions.json',
64 '../api/pageCapture.json', 65 '../api/pageCapture.json',
65 '../api/permissions.json', 66 '../api/permissions.json',
66 '../api/privacy.json', 67 '../api/privacy.json',
67 '../api/proxy.json', 68 '../api/proxy.json',
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 } 671 }
671 if (a.name > b.name) { 672 if (a.name > b.name) {
672 return 1; 673 return 1;
673 } 674 }
674 return 0; 675 return 0;
675 } 676 }
676 677
677 function disableDocs(obj) { 678 function disableDocs(obj) {
678 return !!obj.nodoc || !!obj.internal; 679 return !!obj.nodoc || !!obj.internal;
679 } 680 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698