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

Unified Diff: ext/background.js

Issue 29995555: Issue 7253 - Pre-render icons for badge on Chromium (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/
Patch Set: Rewrite renderIcons Created Feb. 3, 2019, 9:45 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 | lib/icon.js » ('j') | lib/icon.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ext/background.js
===================================================================
--- a/ext/background.js
+++ b/ext/background.js
@@ -343,16 +343,24 @@
{
// Edge throws if passed icon sizes different than 19,20,38,40px.
delete path[16];
delete path[32];
return browser.browserAction.setIcon({tabId: this._tabId, path});
}
}
+ if (change == "iconImageData" && "setIcon" in browser.browserAction)
+ {
+ return browser.browserAction.setIcon({
+ tabId: this._tabId,
+ imageData: this._changes.iconImageData
+ });
+ }
+
// There is no badge on Firefox for Android; the browser action is
// simply a menu item.
if (change == "badgeText" && "setBadgeText" in browser.browserAction)
return browser.browserAction.setBadgeText({
tabId: this._tabId,
text: this._changes.badgeText
});
@@ -392,20 +400,24 @@
{
// If the tab is prerendered, browser.browserAction.set* fails
// and we have to delay our changes until the currently visible tab
// is replaced with the prerendered tab.
browser.tabs.onReplaced.addListener(onReplaced);
});
}
},
- setIcon(path)
+ setIconPath(path)
{
this._addChange("iconPath", path);
},
+ setIconImageData(imageData)
+ {
+ this._addChange("iconImageData", imageData);
+ },
setBadge(badge)
{
if (!badge)
{
this._addChange("badgeText", "");
}
else
{
« no previous file with comments | « no previous file | lib/icon.js » ('j') | lib/icon.js » ('J')

Powered by Google App Engine
This is Rietveld