Chromium Code Reviews| Index: remoting/webapp/js_proto/chrome_proto.js |
| diff --git a/remoting/webapp/js_proto/chrome_proto.js b/remoting/webapp/js_proto/chrome_proto.js |
| index 5535689bc14db43fdbdcf8bb7e322244abe71c91..7dbc96574b2a269d1a1c78e050993b4db322f6b9 100644 |
| --- a/remoting/webapp/js_proto/chrome_proto.js |
| +++ b/remoting/webapp/js_proto/chrome_proto.js |
| @@ -364,6 +364,10 @@ var AppWindow = function() { |
| this.onFullscreened = null; |
| /** @type {string} */ |
| this.id = ''; |
| + /** @type {Bounds} */ |
| + this.outerBounds = null; |
| + /** @type {Bounds} */ |
| + this.innerBounds = null; |
|
Jamie
2014/10/24 22:33:33
Didn't this just land in another CL?
garykac
2014/10/27 16:25:24
...? You must be thinking of another repo...
|
| }; |
| AppWindow.prototype.close = function() {}; |
| @@ -400,6 +404,18 @@ var LaunchData = function() { |
| }; |
| /** @constructor */ |
| +function Bounds() { |
| + /** @type {number} */ |
| + this.left = 0; |
| + /** @type {number} */ |
| + this.top = 0; |
| + /** @type {number} */ |
| + this.width = 0; |
| + /** @type {number} */ |
| + this.height = 0; |
| +}; |
| + |
| +/** @constructor */ |
| function ClientRect() { |
| /** @type {number} */ |
| this.width = 0; |