| OLD | NEW |
| 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 Loading... |
| 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 --> |
| OLD | NEW |