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

Unified Diff: remoting/webapp/js_proto/chrome_proto.js

Issue 654393005: [Chromoting] Update size to use inner/outer bounds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/webapp/base/js/message_window.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « remoting/webapp/base/js/message_window.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698