Merge pull request #46297 from madmiraal/add-missing-semicolons

Add missing semicolons to webxr.eterns.js
This commit is contained in:
Rémi Verschelde 2021-02-21 22:54:12 +01:00 committed by GitHub
commit 54a1b0a2a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,7 +33,7 @@ XR.prototype.ondevicechanged;
* *
* @return {!Promise<boolean>} * @return {!Promise<boolean>}
*/ */
XR.prototype.isSessionSupported = function(mode) {} XR.prototype.isSessionSupported = function(mode) {};
/** /**
* @param {string} mode * @param {string} mode
@ -41,7 +41,7 @@ XR.prototype.isSessionSupported = function(mode) {}
* *
* @return {!Promise<XRSession>} * @return {!Promise<XRSession>}
*/ */
XR.prototype.requestSession = function(mode, options) {} XR.prototype.requestSession = function(mode, options) {};
/** /**
* @constructor * @constructor