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 140607eebf2fd4c44e703e90707f772e52e4ad94..231572e4d58d939989a011494caa0ccf4432c45d 100644 |
--- a/remoting/webapp/crd/js/desktop_connected_view.js |
+++ b/remoting/webapp/crd/js/desktop_connected_view.js |
@@ -188,6 +188,16 @@ remoting.DesktopConnectedView.prototype.getClientArea_ = function() { |
}; |
/** |
+ * @param {number} width |
+ * @param {number} height |
+ */ |
+remoting.DesktopConnectedView.prototype.setPluginSizeForBumpScrollTesting = |
+ function(width, height) { |
+ this.pluginWidthForBumpScrollTesting = width; |
kelvinp
2015/02/18 18:41:29
make this.pluginWidthForBumpScrollTesting_ private
garykac
2015/02/19 01:48:45
Done.
|
+ this.pluginHeightForBumpScrollTesting = height; |
+} |
+ |
+/** |
* Notifies the host of the client's current dimensions and DPI. |
* Also takes into account per-host scaling factor, if configured. |
* TODO: private |