diff options
author | markdittmer@chromium.org <markdittmer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-05 19:55:45 +0000 |
---|---|---|
committer | markdittmer@chromium.org <markdittmer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-05 19:55:45 +0000 |
commit | 7b66d17ddf52e905b6028305776895d530478b0b (patch) | |
tree | 1fd26aa1ee93e51d412905ac89ab9bbd4faf96af /chrome/common | |
parent | 3dabad2370156e779aa35a1025cc09f45930ea20 (diff) | |
download | chromium_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.html | 6 |
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 <webview partition="trusted-audio"> or // <webview partition="persist:trusted-audio"> 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> |