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

Unified Diff: lib/messaging.js

Issue 29374674: Issue 4864 - Start using ESLint for adblockpluschrome (Closed)
Patch Set: Use var for ext declarations again Created Feb. 8, 2017, 9:02 a.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
Index: lib/messaging.js
diff --git a/lib/messaging.js b/lib/messaging.js
index 4e8f3237b546fb5bbb9de02b5f8c9ef9438b3d8d..5c98992eadf74d2e5c8028eb2b0194e2915a506b 100644
--- a/lib/messaging.js
+++ b/lib/messaging.js
@@ -31,7 +31,7 @@ function Port()
this._eventEmitter = new EventEmitter();
this._onMessage = this._onMessage.bind(this);
ext.onMessage.addListener(this._onMessage);
-};
+}
Port.prototype = {
_onMessage(message, sender, sendResponse)
@@ -47,7 +47,8 @@ Port.prototype = {
{
response.then(
sendResponse,
- reason => {
+ reason =>
+ {
console.error(reason);
sendResponse(undefined);
}

Powered by Google App Engine
This is Rietveld