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

Unified Diff: lib/notificationHelper.js

Issue 29334223: Issue 3532 - Generate animation images at runtime (Closed)
Patch Set: Addressed further feedback Created Jan. 22, 2016, 4:47 p.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
« lib/icon.js ('K') | « lib/icon.js ('k') | metadata.chrome » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/notificationHelper.js
diff --git a/lib/notificationHelper.js b/lib/notificationHelper.js
index ebfd7d3161d310820e6f46c51e60322025b52138..9431df979be7a209008bddb66b33f17fa5654c6d 100644
--- a/lib/notificationHelper.js
+++ b/lib/notificationHelper.js
@@ -17,7 +17,7 @@
/** @module notificationHelper */
-let {startIconAnimation, stopIconAnimation} = require("icon");
+let {loadImage, startIconAnimation, stopIconAnimation} = require("icon");
let {Utils} = require("utils");
let {Notification: NotificationStorage} = require("notification");
let {stringifyURL} = require("url");
@@ -154,18 +154,10 @@ function notificationClosed()
function imgToBase64(url, callback)
Sebastian Noack 2016/01/23 14:04:10 Since you return a promise now, the callback param
kzar 2016/01/23 14:43:14 Acknowledged.
{
- let canvas = document.createElement("canvas"),
- ctx = canvas.getContext("2d"),
- img = new Image;
- img.src = url;
- img.onload = function()
+ return loadImage(url).then(function(canvas)
{
- canvas.height = img.height;
- canvas.width = img.width;
- ctx.drawImage(img, 0, 0);
- callback(canvas.toDataURL("image/png"));
- canvas = null;
- };
+ return canvas.toDataURL("image/png");
Sebastian Noack 2016/01/23 14:04:10 Perhaps, we can simply get rid of this helper func
kzar 2016/01/23 14:43:14 Done.
+ });
}
function initChromeNotifications()
@@ -217,7 +209,7 @@ function showNotification(notification)
priority: 2 // We use the highest priority to prevent the notification from closing automatically
};
- imgToBase64(iconUrl, function(iconData)
+ imgToBase64(iconUrl).then(function(iconData)
{
opts.iconUrl = iconData;
chrome.notifications.create("", opts, function() {});
@@ -228,7 +220,7 @@ function showNotification(notification)
if (linkCount > 0)
message += " " + ext.i18n.getMessage("notification_without_buttons");
- imgToBase64(iconUrl, function(iconData)
+ imgToBase64(iconUrl).then(function(iconData)
{
let notification = new Notification(
title,
« lib/icon.js ('K') | « lib/icon.js ('k') | metadata.chrome » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld