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

Unified Diff: ext/background.js

Issue 29646589: Issue 6191 - Update frame structure for Chrome Web Store pages (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/
Patch Set: Do not create URL object Created Jan. 12, 2018, 7:14 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ext/background.js
===================================================================
--- a/ext/background.js
+++ b/ext/background.js
@@ -258,20 +258,23 @@
{types: ["main_frame", "sub_frame"], urls: ["http://*/*", "https://*/*"]},
["responseHeaders"]);
browser.webNavigation.onBeforeNavigate.addListener(details =>
{
// Since we can only listen for HTTP(S) responses using
// webRequest.onHeadersReceived we must update the page structure here for
// other navigations.
- let url = new URL(details.url);
Manish Jethani 2018/01/12 07:25:03 There's no need to create a URL object here, it's
kzar 2018/01/12 12:04:11 Acknowledged.
- if (url.protocol != "http:" && url.protocol != "https:")
+ let {url} = details;
+ if (!url.startsWith("https:") && !url.startsWith("http:") ||
kzar 2018/01/12 12:04:11 I like this new logic, but it seems kind of a sham
Manish Jethani 2018/01/14 14:46:15 I like this sort of optimization in general, but i
kzar 2018/01/15 10:31:12 Agreed, but maybe at least combine the checks? (un
Manish Jethani 2018/01/15 12:08:34 Done.
+ // Chrome doesn't dispatch webRequest.onHeadersReceived
+ // for Web Store URLs.
+ url.startsWith("https://chrome.google.com/webstore/"))
{
- updatePageFrameStructure(details.frameId, details.tabId, details.url,
+ updatePageFrameStructure(details.frameId, details.tabId, url,
details.parentFrameId);
}
});
function forgetTab(tabId)
{
ext.pages.onRemoved._dispatch(tabId);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld