summaryrefslogtreecommitdiffstats
path: root/remoting/webapp/jscompiler_hacks.js
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/webapp/jscompiler_hacks.js')
-rw-r--r--remoting/webapp/jscompiler_hacks.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/remoting/webapp/jscompiler_hacks.js b/remoting/webapp/jscompiler_hacks.js
index 978ff9c..09dc1ba 100644
--- a/remoting/webapp/jscompiler_hacks.js
+++ b/remoting/webapp/jscompiler_hacks.js
@@ -18,8 +18,12 @@ Document.prototype.webkitCancelFullScreen = function() {};
/** @type {boolean} */
Document.prototype.webkitIsFullScreen;
+/** @type {number} */
+Element.ALLOW_KEYBOARD_INPUT;
+
+/** @param {number} flags
/** @return {void} Nothing. */
-Element.prototype.webkitRequestFullScreen = function() {};
+Element.prototype.webkitRequestFullScreen = function(flags) {};
/** @type {{getRandomValues: function(Uint16Array):void}} */
Window.prototype.crypto;