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

Unified Diff: chrome/common/extensions/docs/templates/intros/storage.html

Issue 219213007: Remove .html extension from links (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/templates/intros/storage.html
diff --git a/chrome/common/extensions/docs/templates/intros/storage.html b/chrome/common/extensions/docs/templates/intros/storage.html
index eb33fe4eca44929dfcb03b743632b686a86177f8..b38d0da390d51ca8d66ae33b2edbd2db1342e77e 100644
--- a/chrome/common/extensions/docs/templates/intros/storage.html
+++ b/chrome/common/extensions/docs/templates/intros/storage.html
@@ -15,19 +15,19 @@ with the following key differences:
without the need for a background page.</li>
<li>A user's extension settings can be persisted
even when using
- <a href="manifest/incognito.html">split incognito behavior</a>.</li>
+ <a href="manifest/incognito">split incognito behavior</a>.</li>
<li>It's asynchronous with bulk read and write operations, and therefore
faster than the blocking and serial <code>localStorage API</code>.
<li>User data can be stored as objects
(the <code>localStorage API</code> stores data in strings).</li>
<li>Enterprise policies configured by the administrator for the extension
can be read (using <code>storage.managed</code> with a
- <a href="manifest/storage.html">schema</a>).</li>
+ <a href="manifest/storage">schema</a>).</li>
</ul>
<h2 id="manifest">Manifest</h2>
<p>You must declare the "storage" permission in the <a
- href="manifest.html">extension manifest</a>
+ href="manifest">extension manifest</a>
to use the storage API.
For example:</p>
<pre data-filename="manifest.json">

Powered by Google App Engine
This is Rietveld 408576698