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

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

Issue 1015523005: [Webapp Refactor] Implements AppConnectedView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/base/js/application.js
diff --git a/remoting/webapp/base/js/application.js b/remoting/webapp/base/js/application.js
index 7289b0eea7cb3ae17b698a009e5b2c1678942ab5..bcd6cf122f2d5a5471fd16926e2e740863c23869 100644
--- a/remoting/webapp/base/js/application.js
+++ b/remoting/webapp/base/js/application.js
@@ -149,16 +149,6 @@ remoting.Application.prototype.onConnectionFailed = function(error) {
};
/**
- * Called when the current session has reached the point where the host has
- * started streaming video frames to the client.
- *
- * @return {void} Nothing.
- */
-remoting.Application.prototype.onVideoStreamingStarted = function() {
- this.delegate_.handleVideoStreamingStarted();
-};
-
-/**
* Called when an error needs to be displayed to the user.
*
* @param {!remoting.Error} errorTag The error to be localized and displayed.
@@ -292,15 +282,6 @@ remoting.Application.Delegate.prototype.handleConnectionFailed =
function(connector, error) {};
/**
- * Called when the current session has reached the point where the host has
- * started streaming video frames to the client.
- *
- * @return {void} Nothing.
- */
-remoting.Application.Delegate.prototype.handleVideoStreamingStarted =
- function() {};
-
-/**
* Called when an error needs to be displayed to the user.
*
* @param {!remoting.Error} errorTag The error to be localized and displayed.

Powered by Google App Engine
This is Rietveld 408576698