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

Side by Side Diff: content/browser/bluetooth/bluetooth_device_chooser_controller.cc

Issue 2339253002: bluetooth: mac: add connected LE devices to chooser (Closed)
Patch Set: Better implementation Created 4 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/bluetooth/bluetooth_device_chooser_controller.h" 5 #include "content/browser/bluetooth/bluetooth_device_chooser_controller.h"
6 6
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <unordered_set> 9 #include <unordered_set>
10 10
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 } 329 }
330 330
331 if (!chooser_->CanAskForScanningPermission()) { 331 if (!chooser_->CanAskForScanningPermission()) {
332 VLOG(1) << "Closing immediately because Chooser cannot obtain permission."; 332 VLOG(1) << "Closing immediately because Chooser cannot obtain permission.";
333 OnBluetoothChooserEvent(BluetoothChooser::Event::DENIED_PERMISSION, 333 OnBluetoothChooserEvent(BluetoothChooser::Event::DENIED_PERMISSION,
334 "" /* device_address */); 334 "" /* device_address */);
335 return; 335 return;
336 } 336 }
337 337
338 PopulateConnectedDevices(); 338 PopulateConnectedDevices();
339 adapter_->RetrieveUnknownGattConnectedDevices();
339 if (!chooser_.get()) { 340 if (!chooser_.get()) {
340 // If the dialog's closing, no need to do any of the rest of this. 341 // If the dialog's closing, no need to do any of the rest of this.
341 return; 342 return;
342 } 343 }
343 344
344 if (!adapter_->IsPowered()) { 345 if (!adapter_->IsPowered()) {
345 chooser_->SetAdapterPresence( 346 chooser_->SetAdapterPresence(
346 BluetoothChooser::AdapterPresence::POWERED_OFF); 347 BluetoothChooser::AdapterPresence::POWERED_OFF);
347 return; 348 return;
348 } 349 }
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 513
513 void BluetoothDeviceChooserController::PostErrorCallback( 514 void BluetoothDeviceChooserController::PostErrorCallback(
514 blink::mojom::WebBluetoothError error) { 515 blink::mojom::WebBluetoothError error) {
515 if (!base::ThreadTaskRunnerHandle::Get()->PostTask( 516 if (!base::ThreadTaskRunnerHandle::Get()->PostTask(
516 FROM_HERE, base::Bind(error_callback_, error))) { 517 FROM_HERE, base::Bind(error_callback_, error))) {
517 LOG(WARNING) << "No TaskRunner."; 518 LOG(WARNING) << "No TaskRunner.";
518 } 519 }
519 } 520 }
520 521
521 } // namespace content 522 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | device/bluetooth/bluetooth_adapter.h » ('j') | device/bluetooth/bluetooth_adapter_mac.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698