function()

in src/windows/DeviceProxy.js [69:89]


            function (rootDevices) {
                for (var i = 0; i < rootDevices.length; i++) {
                    var rootDevice = rootDevices[i];
                    if (!rootDevice.properties) continue;
                    if (rootDevice.properties[DEVICE_CLASS_KEY_NO_SEMICOLON] === HAL_DEVICE_CLASS) {
                        versionString = rootDevice.properties[DEVICE_DRIVER_VERSION_KEY];
                        break;
                    }
                }

                setTimeout(function () {
                    win({
                        platform: devicePlatform,
                        version: versionString,
                        uuid: deviceId,
                        isVirtual: isVirtual,
                        model: model,
                        manufacturer: manufacturer
                    });
                }, 0);
            }