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

Unified Diff: device/bluetooth/bluetooth_adapter.cc

Issue 2762023002: work in progress 2
Patch Set: Created 3 years, 9 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: device/bluetooth/bluetooth_adapter.cc
diff --git a/device/bluetooth/bluetooth_adapter.cc b/device/bluetooth/bluetooth_adapter.cc
index 9153dc58aac23ff97c25b89c7181d0d4c9234d48..e393d914ddd6bb894a4bbd081414fbbbc1a1d49f 100644
--- a/device/bluetooth/bluetooth_adapter.cc
+++ b/device/bluetooth/bluetooth_adapter.cc
@@ -75,6 +75,7 @@ void BluetoothAdapter::StartDiscoverySessionWithFilter(
std::unique_ptr<BluetoothDiscoveryFilter> discovery_filter,
const DiscoverySessionCallback& callback,
const ErrorCallback& error_callback) {
+ LOG(ERROR) << "[DJKim] BluetoothAdapter::StartDiscoverySessionWithFilter >> start";
BluetoothDiscoveryFilter* ptr = discovery_filter.get();
AddDiscoverySession(
ptr, base::Bind(&BluetoothAdapter::OnStartDiscoverySession,
@@ -82,6 +83,7 @@ void BluetoothAdapter::StartDiscoverySessionWithFilter(
base::Passed(&discovery_filter), callback),
base::Bind(&BluetoothAdapter::OnStartDiscoverySessionError,
weak_ptr_factory_.GetWeakPtr(), error_callback));
+ LOG(ERROR) << "[DJKim] BluetoothAdapter::StartDiscoverySessionWithFilter >> end";
}
std::unique_ptr<BluetoothDiscoveryFilter>

Powered by Google App Engine
This is Rietveld 408576698