Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / extensions / test / data / api_test / hid / remove_event / background.js
blobea71668471e665c52e1350c51d52ac45ee69ad1a
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 var known_devices = {};
7 chrome.hid.onDeviceRemoved.addListener(function (deviceId) {
8   if (deviceId in known_devices) {
9     chrome.test.sendMessage("success");
10   } else {
11     console.error("Unexpected device removed: " + device.deviceId);
12     chrome.test.sendMessage("failure");
13   }
14 });
16 chrome.hid.getDevices({}, function (devices) {
17   for (var device of devices) {
18     known_devices[device.deviceId] = device;
19   }
20   chrome.test.sendMessage("loaded");
21 });