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

Unified Diff: chrome/ext/background.js

Issue 5186743326212096: Issue 1843 - Deactivate "Block element" dialog when extension is disabled/uninstalled/reloaded (Closed)
Patch Set: Re-phrased comment Created Jan. 26, 2015, 4:11 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 | chrome/ext/content.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/ext/background.js
===================================================================
--- a/chrome/ext/background.js
+++ b/chrome/ext/background.js
@@ -391,6 +391,11 @@
return ext.onMessage._dispatch(message, sender, sendResponse).indexOf(true) != -1;
});
+ // We have to ensure there is at least one listener for the onConnect event.
+ // Otherwise we can't connect a port later, which we need to do in order to
+ // detect when the extension is reloaded, disabled or uninstalled.
+ chrome.runtime.onConnect.addListener(function() {});
+
/* Storage */
« no previous file with comments | « no previous file | chrome/ext/content.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld