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

Unified Diff: chrome/ext/background.js

Issue 29334223: Issue 3532 - Generate animation images at runtime (Closed)
Patch Set: Addressed final nits Created Jan. 26, 2016, 10:57 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
« no previous file with comments | « no previous file | lib/icon.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/ext/background.js
diff --git a/chrome/ext/background.js b/chrome/ext/background.js
index a0bf9d1052c51cabfe8de981fb9fd06ba6becc2d..0d6ca449c0f2f3edae9422e1f4343a086109beb5 100644
--- a/chrome/ext/background.js
+++ b/chrome/ext/background.js
@@ -99,7 +99,8 @@
}));
});
},
- onLoading: new ext._EventTarget()
+ onLoading: new ext._EventTarget(),
+ onActivated: new ext._EventTarget()
};
chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab)
@@ -148,6 +149,11 @@
chrome.tabs.onRemoved.addListener(forgetTab);
+ chrome.tabs.onActivated.addListener(details =>
+ {
+ ext.pages.onActivated._dispatch(new Page({id: details.tabId}));
+ });
+
/* Browser actions */
« no previous file with comments | « no previous file | lib/icon.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld