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

Unified Diff: content/browser/bluetooth/bluetooth_dispatcher_host.cc

Issue 1315093002: Implement a bluetooth picker dialog for Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback Created 5 years, 4 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: content/browser/bluetooth/bluetooth_dispatcher_host.cc
diff --git a/content/browser/bluetooth/bluetooth_dispatcher_host.cc b/content/browser/bluetooth/bluetooth_dispatcher_host.cc
index af5c8f4360970ab1e3a60e92ac0804400da473c3..dffa71c1d6476140a360a45488474b68845b30ce 100644
--- a/content/browser/bluetooth/bluetooth_dispatcher_host.cc
+++ b/content/browser/bluetooth/bluetooth_dispatcher_host.cc
@@ -708,6 +708,10 @@ void BluetoothDispatcherHost::OnBluetoothChooserEvent(
BluetoothChooser::Event event,
const std::string& device_id) {
switch (event) {
+ case BluetoothChooser::Event::RESCAN:
+ // TODO(jyasskin): Implement starting a new Bluetooth discovery session.
+ NOTIMPLEMENTED();
+ break;
case BluetoothChooser::Event::CANCELLED:
case BluetoothChooser::Event::SELECTED:
RequestDeviceSession* session =

Powered by Google App Engine
This is Rietveld 408576698