Chromium Code Reviews| Index: chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h |
| diff --git a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h |
| index 1495ba6b13e4e3b73d6c31160d0847e7fe8ba92b..e3650564bbdb50bde9d9483271369df940d55321 100644 |
| --- a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h |
| +++ b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h |
| @@ -96,6 +96,19 @@ class BluetoothOptionsHandler |
| device::BluetoothDevice* device, uint32 passkey) OVERRIDE; |
| // device::BluetoothDevice::PairingDelegate override. |
| + |
|
keybuk
2013/04/18 00:30:13
missing //
|
| + // This method will be called when the Bluetooth daemon gets a notification |
| + // of a key entered in the device |device| while pairing with the device |
|
keybuk
2013/04/18 00:30:13
make the same text fixes here that were made on th
|
| + // using a PIN code or a Passkey. |
| + // The UI will show a visual indication that a given key was pressed in the |
| + // same pairing overlay where the PIN code or Passkey is displayed. |
| + // |
| + // A first call with |entered| as 0 will indicate that this notification |
| + // mechanism is supported by the device allowing the UI to display this fact. |
| + virtual void DisplayEnteredKeys(device::BluetoothDevice* device, |
| + uint32 entered) OVERRIDE; |
| + |
| + // device::BluetoothDevice::PairingDelegate override. |
| // |
| // This method will be called when the Bluetooth daemon requires that the |
| // user confirm that the Passkey |passkey| is displayed on the screen |