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

Unified Diff: remoting/webapp/client_screen.js

Issue 386853002: Add a Record button to the web-app if the host supports video recording. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: function -> var Created 6 years, 4 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
« no previous file with comments | « remoting/resources/remoting_strings.grd ('k') | remoting/webapp/client_session.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/client_screen.js
diff --git a/remoting/webapp/client_screen.js b/remoting/webapp/client_screen.js
index 61270fef278a22646c24cd5fa97d188e32dabd2d..e31bf652b582bb1419dd37971b93ea24fdc6a95e 100644
--- a/remoting/webapp/client_screen.js
+++ b/remoting/webapp/client_screen.js
@@ -371,6 +371,9 @@ remoting.onConnected = function(clientSession) {
* @return {boolean} Return true if the extension message was recognized.
*/
remoting.onExtensionMessage = function(type, data) {
+ if (remoting.clientSession) {
+ return remoting.clientSession.handleExtensionMessage(type, data);
+ }
return false;
};
« no previous file with comments | « remoting/resources/remoting_strings.grd ('k') | remoting/webapp/client_session.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698