Closed
Bug 1456515
Opened 7 years ago
Closed 7 years ago
Make blocklist plugin URL methods async
Categories
(Toolkit :: Blocklist Implementation, enhancement, P1)
Toolkit
Blocklist Implementation
Tracking
()
RESOLVED
FIXED
mozilla61
| Tracking | Status | |
|---|---|---|
| firefox61 | --- | fixed |
People
(Reporter: Gijs, Assigned: Gijs)
References
Details
(Whiteboard: [fxperf:p1])
Attachments
(1 file)
After bug 1456171 these are the last APIs remaining that aren't already async.
| Assignee | ||
Updated•7 years ago
|
Priority: -- → P1
Whiteboard: [fxperf:p1]
| Assignee | ||
Comment 1•7 years ago
|
||
Looks like half the consumers are setting some kind of 'detailsLink' property on plugin info, which is unused since bug 1398972...
Blocks: 1398972
| Comment hidden (mozreview-request) |
| Comment hidden (mozreview-request) |
| Comment hidden (mozreview-request) |
Comment 5•7 years ago
|
||
| mozreview-review | ||
Comment on attachment 8971598 [details]
Bug 1456515 - make plugin URL methods async,
https://reviewboard.mozilla.org/r/240368/#review246222
Thanks
::: toolkit/mozapps/extensions/Blocklist.jsm:1270
(Diff revision 3)
>
> let r = this._getPluginBlocklistEntry(plugin, this._pluginEntries);
> if (!r) {
> return null;
> }
> let {entry: blockEntry} = r;
This destructuring is... weird. Can we just make this `let blockEntry = r.entry;`?
Attachment #8971598 -
Flags: review?(kmaglione+bmo) → review+
| Comment hidden (mozreview-request) |
| Assignee | ||
Comment 7•7 years ago
|
||
| mozreview-review-reply | ||
Comment on attachment 8971598 [details]
Bug 1456515 - make plugin URL methods async,
https://reviewboard.mozilla.org/r/240368/#review246222
> This destructuring is... weird. Can we just make this `let blockEntry = r.entry;`?
Agreed (I just preserved this in the previous version...), and done. :-)
Pushed by gijskruitbosch@gmail.com:
https://hg.mozilla.org/integration/autoland/rev/537c356f4c4f
make plugin URL methods async, r=kmag
Comment 9•7 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 7 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla61
Updated•6 years ago
|
Component: Blocklist Policy Requests → Blocklist Implementation
You need to log in
before you can comment on or make changes to this bug.
Description
•