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

Unified Diff: remoting/webapp/base/js/base.js

Issue 927373005: [Chromoting] Enable jscompile for browser tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unittests; More review comments Created 5 years, 10 months 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 | « remoting/remoting_webapp_files.gypi ('k') | remoting/webapp/browser_test/browser_test.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/base/js/base.js
diff --git a/remoting/webapp/base/js/base.js b/remoting/webapp/base/js/base.js
index 9f2d83d005c72dd6f092d5c26e712cdee8577dc7..a357fd933a4a72f8d1e9ef8a7c1a10d76d97ad20 100644
--- a/remoting/webapp/base/js/base.js
+++ b/remoting/webapp/base/js/base.js
@@ -375,14 +375,14 @@ base.EventSource = function() {};
/**
* Add a listener |fn| to listen to |type| event.
* @param {string} type
- * @param {function(?=):void} fn
+ * @param {Function} fn
*/
base.EventSource.prototype.addEventListener = function(type, fn) {};
/**
* Remove a listener |fn| to listen to |type| event.
* @param {string} type
- * @param {function(?=):void} fn
+ * @param {Function} fn
*/
base.EventSource.prototype.removeEventListener = function(type, fn) {};
@@ -431,7 +431,7 @@ base.EventSourceImpl.prototype = {
/**
* @param {string} type
- * @param {function(?=):void} fn
+ * @param {Function} fn
*/
addEventListener: function(type, fn) {
base.debug.assert(typeof fn == 'function');
@@ -443,7 +443,7 @@ base.EventSourceImpl.prototype = {
/**
* @param {string} type
- * @param {function(?=):void} fn
+ * @param {Function} fn
*/
removeEventListener: function(type, fn) {
base.debug.assert(typeof fn == 'function');
« no previous file with comments | « remoting/remoting_webapp_files.gypi ('k') | remoting/webapp/browser_test/browser_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698