Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Unified Diff: chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc

Issue 13870020: Bluetooth: Add support for pairing display notifications (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: nits Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 f9948436888ff525d78156141612bd497a1b3793..367206eac06a15effc653cb068ce6045be9ab194 100644
--- a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
+++ b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
@@ -445,6 +445,14 @@ void BluetoothOptionsHandler::DisplayPasskey(device::BluetoothDevice* device,
SendDeviceNotification(device, &params);
}
+void BluetoothOptionsHandler::DisplayEnteredKeys(
+ device::BluetoothDevice* device,
+ uint32 entered) {
+ DictionaryValue params;
+ params.SetInteger("entered", entered);
+ SendDeviceNotification(device, &params);
+}
+
void BluetoothOptionsHandler::ConfirmPasskey(device::BluetoothDevice* device,
uint32 passkey) {
DictionaryValue params;

Powered by Google App Engine
This is Rietveld 408576698