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

Unified Diff: remoting/webapp/app_remoting/js/ar_main.js

Issue 1016373003: [Chromoting] Change Application.Delegate to proper subclass of Application. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Protect many things Created 5 years, 9 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/app_remoting/js/ar_main.js
diff --git a/remoting/webapp/app_remoting/js/ar_main.js b/remoting/webapp/app_remoting/js/ar_main.js
index 269b5ff9c90752621d98f71fedf2c5ebb81882f2..2efe129e03ce323801c0e9814573cfe78edae02f 100644
--- a/remoting/webapp/app_remoting/js/ar_main.js
+++ b/remoting/webapp/app_remoting/js/ar_main.js
@@ -11,8 +11,7 @@ var remoting = remoting || {};
* Entry point ('load' handler) for App Remoting webapp.
*/
remoting.startAppRemoting = function() {
- remoting.app = new remoting.Application(remoting.app_capabilities());
- var app_remoting = new remoting.AppRemoting(remoting.app);
+ remoting.app = new remoting.AppRemoting(remoting.app_capabilities());
remoting.app.start();
};

Powered by Google App Engine
This is Rietveld 408576698