| Index: chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
|
| index 695fa2b80e34ac52899addc8808e2f54f9782ad9..52c316bacd3f9af0f059705664b7256c207062be 100644
|
| --- a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
|
| @@ -451,6 +451,13 @@ void BluetoothOptionsHandler::DisplayPasskey(device::BluetoothDevice* device,
|
| SendDeviceNotification(device, ¶ms);
|
| }
|
|
|
| +void BluetoothOptionsHandler::KeysEntered(device::BluetoothDevice* device,
|
| + uint32 entered) {
|
| + DictionaryValue params;
|
| + params.SetInteger("entered", entered);
|
| + SendDeviceNotification(device, ¶ms);
|
| +}
|
| +
|
| void BluetoothOptionsHandler::ConfirmPasskey(device::BluetoothDevice* device,
|
| uint32 passkey) {
|
| DictionaryValue params;
|
|
|