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

Side by Side 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.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 details.parentFrameId); 256 details.parentFrameId);
257 }, 257 },
258 {types: ["main_frame", "sub_frame"], urls: ["http://*/*", "https://*/*"]}, 258 {types: ["main_frame", "sub_frame"], urls: ["http://*/*", "https://*/*"]},
259 ["responseHeaders"]); 259 ["responseHeaders"]);
260 260
261 browser.webNavigation.onBeforeNavigate.addListener(details => 261 browser.webNavigation.onBeforeNavigate.addListener(details =>
262 { 262 {
263 // Since we can only listen for HTTP(S) responses using 263 // Since we can only listen for HTTP(S) responses using
264 // webRequest.onHeadersReceived we must update the page structure here for 264 // webRequest.onHeadersReceived we must update the page structure here for
265 // other navigations. 265 // other navigations.
266 let url = new URL(details.url); 266 let {url} = details;
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.
267 if (url.protocol != "http:" && url.protocol != "https:") 267 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.
268 // Chrome doesn't dispatch webRequest.onHeadersReceived
269 // for Web Store URLs.
270 url.startsWith("https://chrome.google.com/webstore/"))
268 { 271 {
269 updatePageFrameStructure(details.frameId, details.tabId, details.url, 272 updatePageFrameStructure(details.frameId, details.tabId, url,
270 details.parentFrameId); 273 details.parentFrameId);
271 } 274 }
272 }); 275 });
273 276
274 function forgetTab(tabId) 277 function forgetTab(tabId)
275 { 278 {
276 ext.pages.onRemoved._dispatch(tabId); 279 ext.pages.onRemoved._dispatch(tabId);
277 280
278 ext._removeFromAllPageMaps(tabId); 281 ext._removeFromAllPageMaps(tabId);
279 framesOfTabs.delete(tabId); 282 framesOfTabs.delete(tabId);
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 ext.windows = { 689 ext.windows = {
687 create(createData, callback) 690 create(createData, callback)
688 { 691 {
689 browser.windows.create(createData, createdWindow => 692 browser.windows.create(createData, createdWindow =>
690 { 693 {
691 afterTabLoaded(callback)(createdWindow.tabs[0]); 694 afterTabLoaded(callback)(createdWindow.tabs[0]);
692 }); 695 });
693 } 696 }
694 }; 697 };
695 } 698 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld