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

Side by Side Diff: chrome/common/extensions/docs/templates/intros/webNavigation.html

Issue 12996003: Dynamically generate a heading for Extension Docs API pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments - Patch currently being broken up Created 7 years, 6 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
OLDNEW
1 <p id="classSummary">
2 Use the <code>chrome.webNavigation</code> module to receive
3 notifications about the status of navigations requests in-flight.
4 </p>
5
6 <h2 id="manifest">Manifest</h2> 1 <h2 id="manifest">Manifest</h2>
7 <p> 2 <p>
8 All <code>chrome.webNavigation</code> methods and events require you to declare 3 All <code>chrome.webNavigation</code> methods and events require you to declare
9 the "webNavigation" permission in the <a href="manifest.html">extension 4 the "webNavigation" permission in the <a href="manifest.html">extension
10 manifest</a>. 5 manifest</a>.
11 For example: 6 For example:
12 </p> 7 </p>
13 8
14 <pre>{ 9 <pre>{
15 "name": "My extension", 10 "name": "My extension",
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 The user used the Forward or Back button to initiate the navigation. 155 The user used the Forward or Back button to initiate the navigation.
161 </td> 156 </td>
162 </tr> 157 </tr>
163 <tr> 158 <tr>
164 <td>"from_address_bar"</td> 159 <td>"from_address_bar"</td>
165 <td> 160 <td>
166 The user initiated the navigation from the address bar (aka Omnibox). 161 The user initiated the navigation from the address bar (aka Omnibox).
167 </td> 162 </td>
168 </tr> 163 </tr>
169 </table> 164 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698