aboutsummaryrefslogtreecommitdiff
path: root/src/background/infrastructures/notifier.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-02-24 22:45:47 +0900
committerGitHub <noreply@github.com>2019-02-24 22:45:47 +0900
commitdfeb7e75498384af5e24255ee0fe7f8af37ac489 (patch)
tree12094b3a72d20d07c4cb040c37849c4680fd222b /src/background/infrastructures/notifier.js
parent83684a78e6e54b1e15bd4280553e28eb1d21df09 (diff)
parent80a4a347ec92f3e702075e448aba191ad3627cf6 (diff)
Merge pull request #544 from ueokande/refactor-background
Refactor background
Diffstat (limited to 'src/background/infrastructures/notifier.js')
-rw-r--r--src/background/infrastructures/notifier.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/background/infrastructures/notifier.js b/src/background/infrastructures/notifier.js
deleted file mode 100644
index 1eccc47..0000000
--- a/src/background/infrastructures/notifier.js
+++ /dev/null
@@ -1,23 +0,0 @@
-const NOTIFICATION_ID = 'vimvixen-update';
-
-export default class Notifier {
- notify(title, message, onclick) {
- const listener = (id) => {
- if (id !== NOTIFICATION_ID) {
- return;
- }
-
- onclick();
-
- browser.notifications.onClicked.removeListener(listener);
- };
- browser.notifications.onClicked.addListener(listener);
-
- return browser.notifications.create(NOTIFICATION_ID, {
- 'type': 'basic',
- 'iconUrl': browser.extension.getURL('resources/icon_48x48.png'),
- title,
- message,
- });
- }
-}