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

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

Issue 1204023003: remoting: Fix JSCompiler issues blocking ES6 transition. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove one. Created 5 years, 6 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
Index: remoting/webapp/base/js/ipc.js
diff --git a/remoting/webapp/base/js/ipc.js b/remoting/webapp/base/js/ipc.js
index a83ef87a9a44e5c0699361a83ec046bffb8d1f28..214fdc211720499d2aa7ab635cf9a9ec13a341ce 100644
--- a/remoting/webapp/base/js/ipc.js
+++ b/remoting/webapp/base/js/ipc.js
@@ -146,6 +146,7 @@ base.Ipc.prototype.onMessage_ = function(message, sender, sendResponse) {
* @param {...} var_args
* @return {Promise} A Promise that would resolve to the return value of the
* handler or reject if the handler throws an exception.
+ * @suppress {reportUnknownTypes}
*/
base.Ipc.invoke = function(methodName, var_args) {
var params = Array.prototype.slice.call(arguments, 1);

Powered by Google App Engine
This is Rietveld 408576698