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

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: Re-add line removed during merge 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 6a686cc47e2fb2f7c017f03e5701f0f7526d87fb..70f16f5e499d31f29ddf78bc2b30930516fdb26d 100644
--- a/content/browser/bluetooth/bluetooth_dispatcher_host.cc
+++ b/content/browser/bluetooth/bluetooth_dispatcher_host.cc
@@ -709,6 +709,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