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

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: use api models 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 {{?stable_apis}}
15 {{?is_apps}} 15 <p>
16 {{#api_list.apps.experimental}} 16 Here are the supported chrome.* APIs stable since the Chrome version.
17 <li><a href="{{name}}.html">{{name}}</a></li> 17 </p>
18
19 <h3 id="stable_apis">
20 Stable APIs
21 </h3>
22 <table>
23 <tr><th>Name</th><th>Description</th><th>Chrome Version</th></tr>
24 {{#stable_apis}}
25 <tr>
26 <td><a href="{{name}}.html">{{name}}</a></td>
27 <td>{{{description}}}</td>
28 <td>{{version}}</td>
29 </tr>
30 {{/stable_apis}}
31 </table>
32 {{/}}
33
34 {{?beta_apis}}
35 <p>
36 Here are the supported chrome.* APIs available in Chrome Beta only.
37 </p>
38
39 <h3 id="beta_apis">
40 Beta APIs
41 </h3>
42 <table>
43 <tr><th>Name</th><th>Description</th></tr>
44 {{#beta_apis}}
45 <tr>
46 <td><a href="{{name}}.html">{{name}}</a></td>
47 <td>{{{description}}}</td>
48 </tr>
18 {{/}} 49 {{/}}
19 {{:is_apps}} 50 </table>
20 {{#api_list.extensions.experimental}} 51 {{/}}
21 <li><a href="{{name}}.html">{{name}}</a></li> 52
53 {{?dev_apis}}
54 <p>
55 Here are the supported chrome.* APIs available in Chrome Dev only.
56 </p>
57
58 <h3 id="dev_apis">
59 Dev APIs
60 </h3>
61 <table>
62 <tr><th>Name</th><th>Description</th></tr>
63 {{#dev_apis}}
64 <tr>
65 <td><a href="{{name}}.html">{{name}}</a></td>
66 <td>{{{description}}}</td>
67 </tr>
22 {{/}} 68 {{/}}
23 {{/is_apps}} 69 </table>
24 </ul> 70 {{/}}
71
not at google - send to devlin 2013/11/02 00:31:48 just include the experimental section in here. see
hukun 2013/11/04 11:07:26 Done, use template api_table
25 72
26 {{^is_apps}} 73 {{^is_apps}}
27 <p class="doc-family extensions"> 74 <p class="doc-family extensions">
28 Pay special attention to the following APIs, 75 Pay special attention to the following APIs,
29 which we expect to finalize soon: 76 which we expect to finalize soon:
30 <b>devtools</b>, 77 <b>devtools</b>,
31 <b>permissions</b>, 78 <b>permissions</b>,
32 For examples of using the experimental APIs, see 79 For examples of using the experimental APIs, see
33 <a href="samples.html#experimental">Samples</a>. 80 <a href="samples.html#experimental">Samples</a>.
34 </p> 81 </p>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 {{/is_apps}} 150 {{/is_apps}}
104 </ol> 151 </ol>
105 152
106 <h2 id="other">More APIs</h2> 153 <h2 id="other">More APIs</h2>
107 154
108 <p> 155 <p>
109 For information on the standard APIs, see 156 For information on the standard APIs, see
110 <a href="api_index.html">chrome.* APIs</a> and 157 <a href="api_index.html">chrome.* APIs</a> and
111 <a href="api_other.html">Other APIs</a>. 158 <a href="api_other.html">Other APIs</a>.
112 </p> 159 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698