Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11436)

Unified Diff: chrome_test/tcpapp/tcp.js

Issue 1415743013: Run jshint over all JavaScript files (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@repo_conf
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome_test/chrome_test.js ('k') | chrome_test/tests/extension_test.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_test/tcpapp/tcp.js
diff --git a/chrome_test/tcpapp/tcp.js b/chrome_test/tcpapp/tcp.js
index 643c553079cf36f3000d39bfaf150f63bfbd7096..d73562407cae61392fc642ac77bebcc571be3a7b 100644
--- a/chrome_test/tcpapp/tcp.js
+++ b/chrome_test/tcpapp/tcp.js
@@ -63,14 +63,14 @@ chrome.runtime.onConnectExternal.addListener(function(port) {
var response = {
name: msg.name + '_reply',
data: data || null
- }
+ };
port.postMessage(response);
}
function reject(err) {
var response = {
name: msg.name + '_error',
error: err || null
- }
+ };
port.postMessage(response);
}
« no previous file with comments | « chrome_test/chrome_test.js ('k') | chrome_test/tests/extension_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698