Chromium Code Reviews| Index: chrome/browser/resources/options/chromeos/bluetooth_list_element.js |
| diff --git a/chrome/browser/resources/options/chromeos/bluetooth_list_element.js b/chrome/browser/resources/options/chromeos/bluetooth_list_element.js |
| index d3aad94ee0d79ed8b8a604fa842dc5f37c84b595..97fec4c774146d3314ff98a1b9e1f6ae40ef5215 100644 |
| --- a/chrome/browser/resources/options/chromeos/bluetooth_list_element.js |
| +++ b/chrome/browser/resources/options/chromeos/bluetooth_list_element.js |
| @@ -14,9 +14,11 @@ cr.define('options.system.bluetooth', function() { |
| * @enum {string} |
| */ |
| Constants.DEVICE_TYPE = { |
| + COMPUTER: 'computer', |
| HEADSET: 'headset', |
| KEYBOARD: 'keyboard', |
| MOUSE: 'mouse', |
|
Yufeng Shen (Slow to review)
2011/10/20 22:19:26
can't apply cleanly
the , in the " MOUSE: 'mouse',
Vince Laviano
2011/10/20 22:30:36
The , needs to be there to separate the MOUSE enum
|
| + PHONE: 'phone' |
| }; |
| /** |