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

Unified Diff: ext/common.js

Issue 5777639155433472: Noissue - Added missing semicolons to ext/common.js (Closed)
Patch Set: Created Jan. 9, 2015, 11:39 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ext/common.js
diff --git a/ext/common.js b/ext/common.js
index 42480f3a262917b02a6d0b739db168e2a69573b4..8ea9bfda1cc0fe8139742dc9986e9ef5018f2a57 100644
--- a/ext/common.js
+++ b/ext/common.js
@@ -41,7 +41,7 @@
return origin;
else
return null;
- }
+ };
var MessageProxy = global.ext._MessageProxy = function(messageManager, messageTarget)
{
@@ -54,7 +54,7 @@
this._handleResponse = this._handleResponse.bind(this);
this._messageManager.addMessageListener("AdblockPlus:Message", this._handleRequest);
this._messageManager.addMessageListener("AdblockPlus:Response", this._handleResponse);
- }
+ };
MessageProxy.prototype = {
_disconnect: function()
{
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld