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

Side by Side Diff: messageResponder.js

Issue 29544706: Noissue - Adapt check for devtools panel support for Firefox (Closed)
Patch Set: Use parseInt() Created Sept. 23, 2017, 12:42 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 | « background.js ('k') | 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 } 168 }
169 else 169 else
170 bidiDir = Utils.readingDirection; 170 bidiDir = Utils.readingDirection;
171 171
172 return {locale: Utils.appLocale, bidiDir}; 172 return {locale: Utils.appLocale, bidiDir};
173 } 173 }
174 174
175 if (message.what == "features") 175 if (message.what == "features")
176 { 176 {
177 return { 177 return {
178 devToolsPanel: info.platform == "chromium" 178 devToolsPanel: info.platform == "chromium" ||
179 info.application == "firefox" &&
180 parseInt(info.applicationVersion, 10) >= 54
179 }; 181 };
180 } 182 }
181 183
182 return info[message.what]; 184 return info[message.what];
183 }); 185 });
184 186
185 port.on("app.listen", (message, sender) => 187 port.on("app.listen", (message, sender) =>
186 { 188 {
187 getListenerFilters(sender.page).app = message.filter; 189 getListenerFilters(sender.page).app = message.filter;
188 }); 190 });
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 if (message.url) 427 if (message.url)
426 subscriptions = [Subscription.fromURL(message.url)]; 428 subscriptions = [Subscription.fromURL(message.url)];
427 429
428 for (let subscription of subscriptions) 430 for (let subscription of subscriptions)
429 { 431 {
430 if (subscription instanceof DownloadableSubscription) 432 if (subscription instanceof DownloadableSubscription)
431 Synchronizer.execute(subscription, true); 433 Synchronizer.execute(subscription, true);
432 } 434 }
433 }); 435 });
434 })(this); 436 })(this);
OLDNEW
« no previous file with comments | « background.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld