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

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

Issue 9274004: Take the Extension Storage API out of experimental. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 11 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 28 matching lines...) Expand all
39 '../api/experimental.infobars.json', 39 '../api/experimental.infobars.json',
40 '../api/experimental.input.ime.json', 40 '../api/experimental.input.ime.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.privacy.json', 43 '../api/experimental.privacy.json',
44 '../api/experimental.processes.json', 44 '../api/experimental.processes.json',
45 '../api/experimental.rlz.json', 45 '../api/experimental.rlz.json',
46 '../api/experimental.serial.json', 46 '../api/experimental.serial.json',
47 '../api/experimental.socket.json', 47 '../api/experimental.socket.json',
48 '../api/experimental.speechInput.json', 48 '../api/experimental.speechInput.json',
49 '../api/experimental.storage.json',
50 '../api/experimental.topSites.json', 49 '../api/experimental.topSites.json',
51 '../api/extension.json', 50 '../api/extension.json',
52 '../api/fileBrowserHandler.json', 51 '../api/fileBrowserHandler.json',
53 '../api/fileBrowserPrivate.json', 52 '../api/fileBrowserPrivate.json',
54 '../api/history.json', 53 '../api/history.json',
55 '../api/i18n.json', 54 '../api/i18n.json',
56 '../api/idle.json', 55 '../api/idle.json',
57 '../api/inputMethodPrivate.json', 56 '../api/inputMethodPrivate.json',
58 '../api/management.json', 57 '../api/management.json',
59 '../api/mediaPlayerPrivate.json', 58 '../api/mediaPlayerPrivate.json',
60 '../api/metricsPrivate.json', 59 '../api/metricsPrivate.json',
61 '../api/omnibox.json', 60 '../api/omnibox.json',
62 '../api/pageAction.json', 61 '../api/pageAction.json',
63 '../api/pageActions.json', 62 '../api/pageActions.json',
64 '../api/pageCapture.json', 63 '../api/pageCapture.json',
65 '../api/permissions.json', 64 '../api/permissions.json',
66 '../api/proxy.json', 65 '../api/proxy.json',
66 '../api/storage.json',
67 '../api/systemPrivate.json', 67 '../api/systemPrivate.json',
68 '../api/tabs.json', 68 '../api/tabs.json',
69 '../api/test.json', 69 '../api/test.json',
70 '../api/tts.json', 70 '../api/tts.json',
71 '../api/ttsEngine.json', 71 '../api/ttsEngine.json',
72 '../api/types.json', 72 '../api/types.json',
73 '../api/webNavigation.json', 73 '../api/webNavigation.json',
74 '../api/webRequest.json', 74 '../api/webRequest.json',
75 '../api/webSocketProxyPrivate.json', 75 '../api/webSocketProxyPrivate.json',
76 '../api/webstorePrivate.json', 76 '../api/webstorePrivate.json',
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 629
630 function sortByName(a, b) { 630 function sortByName(a, b) {
631 if (a.name < b.name) { 631 if (a.name < b.name) {
632 return -1; 632 return -1;
633 } 633 }
634 if (a.name > b.name) { 634 if (a.name > b.name) {
635 return 1; 635 return 1;
636 } 636 }
637 return 0; 637 return 0;
638 } 638 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/experimental.storage.html ('k') | chrome/common/extensions/docs/samples.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698