diff options
author | kochi@chromium.org <kochi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-08 02:02:33 +0000 |
---|---|---|
committer | kochi@chromium.org <kochi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-08 02:02:33 +0000 |
commit | d52f52f478d5aa0830cd2b621e464178d2fbaa1f (patch) | |
tree | 3955d86e51f56b944c10901c4e0f23bc9c050b33 | |
parent | 87603dca826088015c0d121b9c1610f5efd59791 (diff) | |
download | chromium_src-d52f52f478d5aa0830cd2b621e464178d2fbaa1f.zip chromium_src-d52f52f478d5aa0830cd2b621e464178d2fbaa1f.tar.gz chromium_src-d52f52f478d5aa0830cd2b621e464178d2fbaa1f.tar.bz2 |
Add accounts.youtube.com in content_security_policy in manifest.json.
This fixes a login hang with content security policy error output.
BUG=168525
TEST=manually login on Chrome OS.
Review URL: https://chromiumcodereview.appspot.com/11778017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175466 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/resources/gaia_auth/manifest.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/resources/gaia_auth/manifest.json b/chrome/browser/resources/gaia_auth/manifest.json index 9b04c31..dd8a177 100644 --- a/chrome/browser/resources/gaia_auth/manifest.json +++ b/chrome/browser/resources/gaia_auth/manifest.json @@ -4,7 +4,7 @@ "name": "GaiaAuthExtension", "version": "0.0.1", "manifest_version": 2, - "content_security_policy": "default-src 'self'; script-src 'self'; frame-src 'self' https://accounts.google.com; style-src 'self' 'unsafe-inline'", + "content_security_policy": "default-src 'self'; script-src 'self'; frame-src 'self' https://accounts.google.com https://accounts.youtube.com; style-src 'self' 'unsafe-inline'", "description": "GAIA Component Extension", "web_accessible_resources": [ "main.css", |