aboutsummaryrefslogtreecommitdiff
path: root/src/background/infrastructures/Notifier.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-02-25 22:01:37 +0900
committerGitHub <noreply@github.com>2019-02-25 22:01:37 +0900
commitcebd64a69f705482957a5e6a3f23054ca7985aa4 (patch)
tree9e8ffd8209972f839367302d3a4b68051f5c2823 /src/background/infrastructures/Notifier.js
parentdfeb7e75498384af5e24255ee0fe7f8af37ac489 (diff)
parent8614c7a516b475803b0ad30a0fe8e6d0c98e7b48 (diff)
Merge pull request #539 from ueokande/webext-on-install-event
Use browser.runtime.onInstalled event
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,
- });
- }
-}