| OLD | NEW |
| 1 <p id="classSummary"> | |
| 2 Use the <code>chrome.privacy</code> module to control usage of the features in | |
| 3 Chrome that can affect a user's privacy. This module relies on the | |
| 4 <a href="types.html#ChromeSetting">ChromeSetting prototype of the type API</a> | |
| 5 for getting and setting Chrome's configuration. | |
| 6 </p> | |
| 7 | |
| 8 <p class="note"> | 1 <p class="note"> |
| 9 The <a href="http://www.google.com/intl/en/landing/chrome/google-chrome-privac
y-whitepaper.pdf">Chrome Privacy Whitepaper</a> | 2 The <a href="http://www.google.com/intl/en/landing/chrome/google-chrome-privac
y-whitepaper.pdf">Chrome Privacy Whitepaper</a> |
| 10 gives background detail regarding the features which this API can control. | 3 gives background detail regarding the features which this API can control. |
| 11 </p> | 4 </p> |
| 12 | 5 |
| 13 <h2 id="manifest">Manifest</h2> | 6 <h2 id="manifest">Manifest</h2> |
| 14 <p> | 7 <p> |
| 15 You must declare the "privacy" permission in your extension's | 8 You must declare the "privacy" permission in your extension's |
| 16 <a href="manifest.html">manifest</a> to use the API. For example: | 9 <a href="manifest.html">manifest</a> to use the API. For example: |
| 17 </p> | 10 </p> |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 // in `details.levelOfControl`, and `details.incognitoSpecific` will be | 88 // in `details.levelOfControl`, and `details.incognitoSpecific` will be |
| 96 // `true` if the value is specific to Incognito mode. | 89 // `true` if the value is specific to Incognito mode. |
| 97 });</pre> | 90 });</pre> |
| 98 | 91 |
| 99 <h2 id="examples">Examples</h2> | 92 <h2 id="examples">Examples</h2> |
| 100 <p> | 93 <p> |
| 101 For example code, see the | 94 For example code, see the |
| 102 <a href="samples.html#privacy">Privacy API samples</a>. | 95 <a href="samples.html#privacy">Privacy API samples</a>. |
| 103 </p> | 96 </p> |
| 104 | 97 |
| OLD | NEW |