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

Side by Side Diff: lib/requestBlocker.js

Issue 29394585: Issue 5027 - Use updated webRequest API for WebSocket blocking (Closed)
Patch Set: Created March 24, 2017, 1 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
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-2017 eyeo GmbH 3 * Copyright (C) 2006-2017 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 FilterNotifier.on("subscription.removed", onFilterChange); 147 FilterNotifier.on("subscription.removed", onFilterChange);
148 FilterNotifier.on("subscription.updated", onFilterChange); 148 FilterNotifier.on("subscription.updated", onFilterChange);
149 FilterNotifier.on("subscription.disabled", arg => onFilterChange(arg, true)); 149 FilterNotifier.on("subscription.disabled", arg => onFilterChange(arg, true));
150 FilterNotifier.on("filter.added", onFilterChange); 150 FilterNotifier.on("filter.added", onFilterChange);
151 FilterNotifier.on("filter.removed", onFilterChange); 151 FilterNotifier.on("filter.removed", onFilterChange);
152 FilterNotifier.on("filter.disabled", arg => onFilterChange(arg, true)); 152 FilterNotifier.on("filter.disabled", arg => onFilterChange(arg, true));
153 FilterNotifier.on("load", onFilterChange); 153 FilterNotifier.on("load", onFilterChange);
154 154
155 port.on("request.websocket", (msg, sender) => 155 port.on("request.websocket", (msg, sender) =>
156 { 156 {
157 if (ext.webRequest.hasOwnProperty("RequestType.WEBSOCKET"))
Sebastian Noack 2017/03/24 17:45:02 Does that even work? I think this should rather be
Jon Sonesen 2017/03/26 12:38:55 Thanks for pointing that out. I had tested this in
158 return;
Jon Sonesen 2017/03/24 13:04:43 This will cause connections created in shared work
Sebastian Noack 2017/03/24 17:45:02 Is that so? I'd rather assume that the code in lib
157 return ext.webRequest.onBeforeRequest._dispatch( 159 return ext.webRequest.onBeforeRequest._dispatch(
158 new URL(msg.url), 160 new URL(msg.url),
159 "WEBSOCKET", 161 "WEBSOCKET",
160 sender.page, 162 sender.page,
161 sender.frame 163 sender.frame
162 ).indexOf(false) != -1; 164 ).indexOf(false) != -1;
163 }); 165 });
OLDNEW
« no previous file with comments | « chrome/ext/background.js ('k') | metadata.chrome » ('j') | metadata.chrome » ('J')

Powered by Google App Engine
This is Rietveld