Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: lib/csp.js

Issue 29374674: Issue 4864 - Start using ESLint for adblockpluschrome (Closed)
Patch Set: Use .includes again Created March 31, 2017, 8:37 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/compat.js ('k') | lib/devtools.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/csp.js
diff --git a/lib/csp.js b/lib/csp.js
index 3c06425f8f39f01566b9a75508efa1ec739ac812..8b11f3c97835273e0ecd17008dada624cf54e15f 100644
--- a/lib/csp.js
+++ b/lib/csp.js
@@ -51,7 +51,8 @@ if (!("WEBSOCKET" in chrome.webRequest.ResourceType))
//
// "http:" also includes "https:" implictly.
// https://www.chromestatus.com/feature/6653486812889088
- value: "connect-src http:; child-src http:; frame-src http:; object-src http:"
+ value: "connect-src http:; child-src http:; " +
+ "frame-src http:; object-src http:"
});
return {responseHeaders: details.responseHeaders};
}
« no previous file with comments | « lib/compat.js ('k') | lib/devtools.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld