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

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

Issue 955283002: Converted remoting.Error from an enum to a class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Smaller diff. 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
Index: remoting/webapp/crd/js/desktop_connected_view.js
diff --git a/remoting/webapp/crd/js/desktop_connected_view.js b/remoting/webapp/crd/js/desktop_connected_view.js
index dde6821a4e0735a6fd3f3d0443f87ac0fd8af49c..5cb1e3973aeaf70321d916a0edda41ad41f56079 100644
--- a/remoting/webapp/crd/js/desktop_connected_view.js
+++ b/remoting/webapp/crd/js/desktop_connected_view.js
@@ -31,7 +31,7 @@ remoting.enableMouseLock = false;
* @param {remoting.DesktopConnectedView.Mode} mode The mode of this connection.
* @param {string} defaultRemapKeys The default set of remap keys, to use
* when the client doesn't define any.
- * @param {function(remoting.Error, remoting.ClientPlugin): void} onInitialized
+ * @param {function(!remoting.Error, remoting.ClientPlugin): void} onInitialized
* @constructor
* @extends {base.EventSourceImpl}
*/
@@ -56,7 +56,7 @@ remoting.DesktopConnectedView = function(session, container, host, mode,
/**
* Called when the UI is finished initializing.
- * @type {function(remoting.Error, remoting.ClientPlugin):void}
+ * @type {function(!remoting.Error, remoting.ClientPlugin):void}
*/
this.onInitialized_ = onInitialized;

Powered by Google App Engine
This is Rietveld 408576698