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

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

Issue 1093373005: [Webapp Refactor] Cleans up the ClientSession.EventHandler interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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/client_session_factory_unittest.js
diff --git a/remoting/webapp/crd/js/client_session_factory_unittest.js b/remoting/webapp/crd/js/client_session_factory_unittest.js
index 819378c1ee71e7f119c025c1c39f151330fa571f..5ca8c0234e77304de1c74fa41583b339a993130a 100644
--- a/remoting/webapp/crd/js/client_session_factory_unittest.js
+++ b/remoting/webapp/crd/js/client_session_factory_unittest.js
@@ -20,7 +20,7 @@ var listener;
var SessionListener = function() {};
SessionListener.prototype.onConnectionFailed = function(error) {};
SessionListener.prototype.onConnected = function(connectionInfo) {};
-SessionListener.prototype.onDisconnected = function() {};
+SessionListener.prototype.onDisconnected = function(reason) {};
SessionListener.prototype.onError = function(error) {};
QUnit.module('ClientSessionFactory', {

Powered by Google App Engine
This is Rietveld 408576698