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

Unified Diff: chrome/common/extensions/docs/privacy.html

Issue 9582005: Fix typos in privacy API documentation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 10 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/privacy.html
===================================================================
--- chrome/common/extensions/docs/privacy.html (revision 124408)
+++ chrome/common/extensions/docs/privacy.html (working copy)
@@ -265,7 +265,7 @@
<p>
Reading the current value of a Chrome setting is straightforward. You'll first
need to find the property you're interested in, then you'll call
- <code>get()</code> on that object in order to retrieve it's current value and
+ <code>get()</code> on that object in order to retrieve its current value and
your extension's level of control. For example, to determine if Chrome's
Autofill feature is enabled, you'd write:
</p>
@@ -278,7 +278,7 @@
<p>
Changing the value of a setting is a little bit more complex, simply because
you first must verify that your extension can control the setting. The user
- won't see any change to her settings if you extension toggles a setting that
+ won't see any change to her settings if your extension toggles a setting that
is either locked to a specific value by enterprise policies
(<code>levelOfControl</code> will be set to "not_controllable"), or if another
extension is controlling the value (<code>levelOfControl</code> will be set to
@@ -297,7 +297,7 @@
This means that you ought to use the <code>get()</code> method to determine
your level of access, and then only call <code>set()</code> if your extension
can grab control over the setting (in fact if your extension can't control the
- setting it's probably a good idea to visibly disable the functionality to
+ setting it's probably a good idea to visually disable the functionality to
reduce user confusion):
</p>
<pre>chrome.privacy.services.autofillEnabled.get({}, function(details) {
« no previous file with comments | « no previous file | chrome/common/extensions/docs/static/privacy.html » ('j') | chrome/common/extensions/docs/static/privacy.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698