summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authormarkdittmer@chromium.org <markdittmer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-05 19:55:45 +0000
committermarkdittmer@chromium.org <markdittmer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-05 19:55:45 +0000
commit7b66d17ddf52e905b6028305776895d530478b0b (patch)
tree1fd26aa1ee93e51d412905ac89ab9bbd4faf96af /chrome/common
parent3dabad2370156e779aa35a1025cc09f45930ea20 (diff)
downloadchromium_src-7b66d17ddf52e905b6028305776895d530478b0b.zip
chromium_src-7b66d17ddf52e905b6028305776895d530478b0b.tar.gz
chromium_src-7b66d17ddf52e905b6028305776895d530478b0b.tar.bz2
Fix two awkward wordings that were missed in review of Issue 308903002 (committed as 274668)
Review URL: https://codereview.chromium.org/313873002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@275224 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/extensions/docs/templates/intros/webview_tag.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/extensions/docs/templates/intros/webview_tag.html b/chrome/common/extensions/docs/templates/intros/webview_tag.html
index 27a3352..c9d07b3 100644
--- a/chrome/common/extensions/docs/templates/intros/webview_tag.html
+++ b/chrome/common/extensions/docs/templates/intros/webview_tag.html
@@ -173,13 +173,13 @@ Consider the following <code>manifest.json</code> snippet:
// In addition, any &lt;webview partition="trusted-audio"&gt; or
// &lt;webview partition="persist:trusted-audio"&gt; will have access to
// ".mp3" files. Note that this is in addition to "local_*.html",
- // "*.png", "*.js" above because "trusted-audio" also matches the
- // "trusted*" pattern.
+ // "*.png", "*.js" because "trusted-audio" also matches the "trusted*"
+ // pattern.
{
"name": "trusted-audio",
"accessible_resources": ["*.mp3"]
}
- // Webviews in any other partition are denied access to package-local
+ // Webviews in any other partition are denied access to packaged
// resources.
]
}</strong>