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

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

Issue 888323002: Improve HRD first run experience (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ready for Checkin Created 5 years, 11 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/crd/js/typecheck.js ('k') | remoting/webapp/unittests/it2me_helpee_channel_unittest.js » ('j') | 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 d47ef43da6c230371d82dfe8f1ae2cd05fd63f52..99fb4598dcf07a5c0f36efb445534f34e0ba9bea 100644
--- a/remoting/webapp/js_proto/chrome_proto.js
+++ b/remoting/webapp/js_proto/chrome_proto.js
@@ -386,6 +386,17 @@ AppWindow.prototype.drawAttention = function() {};
AppWindow.prototype.focus = function() {};
AppWindow.prototype.maximize = function() {};
AppWindow.prototype.minimize = function() {};
+/**
+ * @param {number} left
+ * @param {number} top
+ */
+AppWindow.prototype.moveTo = function(left, top) {};
+/**
+ * @param {number} width
+ * @param {number} height
+ */
+AppWindow.prototype.resizeTo = function(width, height) {};
+
AppWindow.prototype.restore = function() {};
AppWindow.prototype.show = function() {};
/** @return {boolean} */
@@ -424,7 +435,7 @@ function Bounds() {
this.width = 0;
/** @type {number} */
this.height = 0;
-};
+}
/** @type {Object} */
chrome.cast = {};
« no previous file with comments | « remoting/webapp/crd/js/typecheck.js ('k') | remoting/webapp/unittests/it2me_helpee_channel_unittest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698