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

Unified Diff: chrome/browser/resources/gaia_auth/manifest.json

Issue 13872010: cros: Add a header for gaia auth requests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
« no previous file with comments | « chrome/browser/resources/gaia_auth/main.js ('k') | chrome/browser/resources/gaia_auth/manifest_test.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/gaia_auth/manifest.json
diff --git a/chrome/browser/resources/gaia_auth/manifest.json b/chrome/browser/resources/gaia_auth/manifest.json
index 0606736a580c9d77c212cf7ad3e786f5b4aba655..2e4945e7a4f0c03278613c00121faf249f3b61d0 100644
--- a/chrome/browser/resources/gaia_auth/manifest.json
+++ b/chrome/browser/resources/gaia_auth/manifest.json
@@ -17,12 +17,15 @@
"success.js",
"util.js"
],
- // cookies for getting hash passed back from GAIA on login success
- // tabs for calling current webui's login. This might not be needed once
- // we have extension API
+ "background": {
+ "scripts": ["background.js"]
asargent_no_longer_on_chrome 2013/04/12 17:46:07 Can you make this use event pages (aka "lazy backg
xiyuan 2013/04/12 18:05:00 webRequest is not supported in event pages yet.
+ },
+ // background, webRequest and host rules to set additional http header for
+ // request sent from sub frame.
"permissions": [
- "cookies",
- "tabs",
- "chrome://oobe/"
+ "background",
+ "webRequest",
+ "webRequestBlocking",
+ "<all_urls>"
zel 2013/04/11 20:43:21 Can't we scope this down from <all_urls>? This see
]
}
« no previous file with comments | « chrome/browser/resources/gaia_auth/main.js ('k') | chrome/browser/resources/gaia_auth/manifest_test.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698