OLD | NEW |
1 <!-- BEGIN AUTHORED CONTENT --> | 1 <!-- BEGIN AUTHORED CONTENT --> |
2 <p id="classSummary"> | 2 <p id="classSummary"> |
3 Use the <code>chrome.privacy</code> module to control usage of the features in | 3 Use the <code>chrome.privacy</code> module to control usage of the features in |
4 Chrome that can affect a user's privacy. This module relies on the | 4 Chrome that can affect a user's privacy. This module relies on the |
5 <a href="types.html#ChromeSetting">ChromeSetting prototype of the type API</a> | 5 <a href="types.html#ChromeSetting">ChromeSetting prototype of the type API</a> |
6 for getting and setting Chrome's configuration. | 6 for getting and setting Chrome's configuration. |
7 </p> | 7 </p> |
8 <p class="note"> | 8 <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> | 9 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. | 10 gives background detail regarding the features which this API can control. |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 function (details) { | 82 function (details) { |
83 // The new value is stored in `details.value`, the new level of control | 83 // The new value is stored in `details.value`, the new level of control |
84 // in `details.levelOfControl`, and `details.incognitoSpecific` will be | 84 // in `details.levelOfControl`, and `details.incognitoSpecific` will be |
85 // `true` if the value is specific to Incognito mode. | 85 // `true` if the value is specific to Incognito mode. |
86 });</pre> | 86 });</pre> |
87 <h2 id="examples">Examples</h2> | 87 <h2 id="examples">Examples</h2> |
88 <p> | 88 <p> |
89 For example code, see the | 89 For example code, see the |
90 <a href="samples.html#privacy">Privacy API samples</a>. | 90 <a href="samples.html#privacy">Privacy API samples</a>. |
91 </p> | 91 </p> |
OLD | NEW |