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

Side by Side Diff: chrome/common/extensions/docs/templates/articles/experimental.html

Issue 48263002: list apis by channel info, e.g. dev, stable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 1 month 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
OLDNEW
1 <h1 class="page_title">chrome.experimental.* APIs</h1> 1 <h1 class="page_title">chrome.experimental.* APIs</h1>
2 2
3 <h2 id="overview"> 3 <h2 id="overview">
4 List of APIs 4 List of APIs
5 </h2> 5 </h2>
6 6
7 {{^is_apps}} 7 {{^is_apps}}
8 <p class="doc-family extensions"> 8 <p class="doc-family extensions">
9 We'd like your <a href="http://groups.google.com/a/chromium.org/group/chromium-e xtensions/topics">feedback</a> 9 We'd like your <a href="http://groups.google.com/a/chromium.org/group/chromium-e xtensions/topics">feedback</a>
10 on the following experimental APIs: 10 on the following experimental APIs:
11 </p> 11 </p>
12 {{/is_apps}} 12 {{/is_apps}}
13 13
14 <ul> 14 <p>
not at google - send to devlin 2013/10/31 00:05:26 I wouldn't worry about changing this file. It's wr
15 Stable APIs
16 </p>
17 <table>
18 <tr><td>API Name</td><td>API Description</td><td>Chrome Version</td></tr>
15 {{?is_apps}} 19 {{?is_apps}}
16 {{#api_list.apps.experimental}} 20 {{#api_list.apps.experimental.stable}}
17 <li><a href="{{name}}.html">{{name}}</a></li> 21 <tr>
18 {{/}} 22 <td><a href="{{name}}.html">{{name}}</a></td>
23 <td>{{{description}}}</td>
24 <td>{{version}}</td>
25 </tr>
26 {{/api_list.apps.experimental.stable}}
27
19 {{:is_apps}} 28 {{:is_apps}}
20 {{#api_list.extensions.experimental}} 29 {{#api_list.extensions.experimental.stable}}
21 <li><a href="{{name}}.html">{{name}}</a></li> 30 <tr>
22 {{/}} 31 <td><a href="{{name}}.html">{{name}}</a></td>
32 <td>{{{description}}}</td>
33 <td>{{version}}</td>
34 </tr>
35 {{/api_list.extensions.experimental.stable}}
23 {{/is_apps}} 36 {{/is_apps}}
24 </ul> 37 </table>
38
39 <p>
40 Beta APIs
41 </p>
42 <table>
43 <tr><td>API Name</td><td>API Description</td></tr>
44 {{?is_apps}}
45 {{#api_list.apps.experimental.beta}}
46 <tr>
47 <td><a href="{{name}}.html">{{name}}</a></td>
48 <td>{{{description}}}</td>
49 </tr>
50 {{/api_list.apps.experimental.beta}}
51 {{:is_apps}}
52 {{#api_list.extensions.experimental.beta}}
53 <tr>
54 <td><a href="{{name}}.html">{{name}}</a></td>
55 <td>{{{description}}}</td>
56 </tr>
57 {{/api_list.extensions.experimental.beta}}
58
59 {{/is_apps}}
60 </table>
61
62 <p>
63 Dev APIs
64 </p>
65 <table>
66 <tr><td>API Name</td><td>API Description</td></tr>
67 {{?is_apps}}
68 {{#api_list.apps.experimental.dev}}
69 <tr>
70 <td><a href="{{name}}.html">{{name}}</a></td>
71 <td>{{{description}}}</td>
72 </tr>
73 {{/api_list.apps.experimental.dev}}
74 {{:is_apps}}
75 {{#api_list.extensions.experimental.dev}}
76 <tr>
77 <td><a href="{{name}}.html">{{name}}</a></td>
78 <td>{{{description}}}</td>
79 </tr>
80 {{/api_list.extensions.experimental.dev}}
81 {{/is_apps}}
82 </table>
83
25 84
26 {{^is_apps}} 85 {{^is_apps}}
27 <p class="doc-family extensions"> 86 <p class="doc-family extensions">
28 Pay special attention to the following APIs, 87 Pay special attention to the following APIs,
29 which we expect to finalize soon: 88 which we expect to finalize soon:
30 <b>devtools</b>, 89 <b>devtools</b>,
31 <b>permissions</b>, 90 <b>permissions</b>,
32 For examples of using the experimental APIs, see 91 For examples of using the experimental APIs, see
33 <a href="samples.html#experimental">Samples</a>. 92 <a href="samples.html#experimental">Samples</a>.
34 </p> 93 </p>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 {{/is_apps}} 162 {{/is_apps}}
104 </ol> 163 </ol>
105 164
106 <h2 id="other">More APIs</h2> 165 <h2 id="other">More APIs</h2>
107 166
108 <p> 167 <p>
109 For information on the standard APIs, see 168 For information on the standard APIs, see
110 <a href="api_index.html">chrome.* APIs</a> and 169 <a href="api_index.html">chrome.* APIs</a> and
111 <a href="api_other.html">Other APIs</a>. 170 <a href="api_other.html">Other APIs</a>.
112 </p> 171 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698