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

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

Issue 868203002: Handle authentication failures in the v2 app by restarting the app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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/remoting.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/dom_proto.js
diff --git a/remoting/webapp/js_proto/dom_proto.js b/remoting/webapp/js_proto/dom_proto.js
index 24f58d9c891b8d4413fe67982cffe4723687929e..518bebccf02cb31ae3b1b3356240d530ef0ebb50 100644
--- a/remoting/webapp/js_proto/dom_proto.js
+++ b/remoting/webapp/js_proto/dom_proto.js
@@ -52,6 +52,11 @@ Element.prototype.checked;
/** @type {Window} */
HTMLIFrameElement.prototype.contentWindow;
+/**
+ * @param {string} selector
+ * @return {?HTMLElement}.
+ */
+HTMLElement.prototype.querySelector = function(selector) {};
/**
* @param {string} name
@@ -114,6 +119,11 @@ Event.prototype.initMouseEvent = function(
/** @type {Object} */
Event.prototype.data = {};
+/**
+ * @param {*} value
+ * @return {boolean} whether value is an integer or not.
+ */
+Number.isInteger = function(value) {};
// Chrome implements XMLHttpRequest.responseURL starting from Chrome 37.
/** @type {string} */
« no previous file with comments | « remoting/webapp/crd/js/remoting.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698