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

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

Issue 10750017: Extensions Docs Server: Intro data source (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
1 <!-- BEGIN AUTHORED CONTENT --> 1 <!-- BEGIN AUTHORED CONTENT -->
2 <p id="classSummary"> 2 <p id="classSummary">
3 Use the <code>chrome.storage</code> module 3 Use the <code>chrome.storage</code> module
4 to store, retrieve, and track changes to user data. 4 to store, retrieve, and track changes to user data.
5 This API has been optimized 5 This API has been optimized
6 to meet the specific storage needs of extensions. 6 to meet the specific storage needs of extensions.
7 It provides the same storage capabilities as the 7 It provides the same storage capabilities as the
8 <a href="https://developer.mozilla.org/en/DOM/Storage#localStorage">localStorage API</a> 8 <a href="https://developer.mozilla.org/en/DOM/Storage#localStorage">localStorage API</a>
9 with the following key differences: 9 with the following key differences:
10 </p> 10 </p>
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 storageChange.oldValue, 116 storageChange.oldValue,
117 storageChange.newValue); 117 storageChange.newValue);
118 } 118 }
119 }); 119 });
120 </pre> 120 </pre>
121 <p> 121 <p>
122 You can find examples that use this API on the 122 You can find examples that use this API on the
123 <a href="samples.html#sty">Samples page</a>. 123 <a href="samples.html#sty">Samples page</a>.
124 </p> 124 </p>
125 <!-- END AUTHORED CONTENT --> 125 <!-- END AUTHORED CONTENT -->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698