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

Unified Diff: chrome/common/extensions/docs/templates/articles/app_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/articles/app_storage.html
diff --git a/chrome/common/extensions/docs/templates/articles/app_storage.html b/chrome/common/extensions/docs/templates/articles/app_storage.html
index abb0170ac8e132f738edf3c780cf960df13b238a..a9c19f3f052cdfd25a64d165d8dcec27111c9aa8 100644
--- a/chrome/common/extensions/docs/templates/articles/app_storage.html
+++ b/chrome/common/extensions/docs/templates/articles/app_storage.html
@@ -6,18 +6,18 @@ of sending or receiving data.
Starting with the basics,
you should use an MVC framework to help you design and implement your app
so that data is completely separate from the app's view on that data
-(see <a href="app_frameworks.html">MVC Architecture</a>).
+(see <a href="app_frameworks">MVC Architecture</a>).
</p>
<p>
You also need to think about how data is handled when your app is offline
-(see <a href="offline_apps.html">Offline First</a>).
+(see <a href="offline_apps">Offline First</a>).
This doc briefly introduces the storage options
for sending, receiving, and saving data locally;
the remainder of the doc shows you how
to use Chrome's File System and Sync File System APIs
-(see also <a href="fileSystem.html">fileSystem API</a> and
-<a href="syncFileSystem.html">syncFileSystem API</a>).
+(see also <a href="fileSystem">fileSystem API</a> and
+<a href="syncFileSystem">syncFileSystem API</a>).
</p>
<p class="note">
@@ -36,19 +36,19 @@ Packaged apps use many different mechanisms
to send and receive data.
For external data (resources, web pages),
you need to be aware of the
-<a href="contentSecurityPolicy.html">Content Security Policy (CSP)</a>.
+<a href="contentSecurityPolicy">Content Security Policy (CSP)</a>.
Similar to Chrome Extensions,
you can use
-<a href="app_external.html#external">cross-origin XMLHttpRequests</a>
+<a href="app_external#external">cross-origin XMLHttpRequests</a>
to communicate with remote servers.
You can also isolate external pages,
so that the rest of your app is secure
-(see <a href="app_external.html#webview">Embed external web pages</a>).
+(see <a href="app_external#webview">Embed external web pages</a>).
</p>
<p>
When saving data locally,
-you can use the <a href="storage.html">Chrome Storage API</a>
+you can use the <a href="storage">Chrome Storage API</a>
to save small amounts of string data and
IndexedDB to save structured data.
With IndexedDB, you can persist JavaScript objects

Powered by Google App Engine
This is Rietveld 408576698