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

Side by Side Diff: chrome/common/extensions/docs/templates/intros/browsingData.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.browsingData</code> module to remove browsing data from a
3 user's local profile.
4 </p>
5
6 <h2 id="manifest">Manifest</h2> 1 <h2 id="manifest">Manifest</h2>
7 2
8 <p> 3 <p>
9 You must declare the "browsingData" permission in the 4 You must declare the "browsingData" permission in the
10 <a href="manifest.html">extension manifest</a> to use this API. 5 <a href="manifest.html">extension manifest</a> to use this API.
11 </p> 6 </p>
12 7
13 <pre>{ 8 <pre>{
14 "name": "My extension", 9 "name": "My extension",
15 ... 10 ...
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 <code>extension</code>. These are destructive operations that your users 144 <code>extension</code>. These are destructive operations that your users
150 will write angry email about if they're not well-informed about what to 145 will write angry email about if they're not well-informed about what to
151 expect when your extension removes data on their behalf. 146 expect when your extension removes data on their behalf.
152 </p> 147 </p>
153 148
154 <h2 id="samples">Examples</h2> 149 <h2 id="samples">Examples</h2>
155 <p> 150 <p>
156 Samples for the <code>browsingData</code> API are available 151 Samples for the <code>browsingData</code> API are available
157 <a href="samples.html#browsingData">on the samples page</a>. 152 <a href="samples.html#browsingData">on the samples page</a>.
158 </p> 153 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698