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

Unified Diff: remoting/webapp/crd/js/fullscreen.js

Issue 803653004: Update Chromoting to use /third_party/closure_compiler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unused types Created 5 years, 11 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/crd/js/fullscreen.js
diff --git a/remoting/webapp/crd/js/fullscreen.js b/remoting/webapp/crd/js/fullscreen.js
index 0107a6b49a76e37f23c92309454a7da0aeea6a0b..415734b7b21d01fdf84f2392921923c8b8b92647 100644
--- a/remoting/webapp/crd/js/fullscreen.js
+++ b/remoting/webapp/crd/js/fullscreen.js
@@ -30,20 +30,21 @@ remoting.Fullscreen.prototype.isActive = function() { };
/**
* Toggle full-screen mode.
+ * @return {void}
*/
remoting.Fullscreen.prototype.toggle = function() { };
/**
* Add a listener for the full-screen-changed event.
*
- * @param {function(boolean):void} callback
+ * @param {function(boolean=):void} callback
*/
remoting.Fullscreen.prototype.addListener = function(callback) { };
/**
* Remove a listener for the full-screen-changed event.
*
- * @param {function(boolean):void} callback
+ * @param {function(boolean=):void} callback
*/
remoting.Fullscreen.prototype.removeListener = function(callback) { };

Powered by Google App Engine
This is Rietveld 408576698