summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc28
-rw-r--r--chromeos/dbus/bluetooth_adapter_client.cc14
-rw-r--r--chromeos/dbus/bluetooth_agent_service_provider.cc4
-rw-r--r--chromeos/dbus/bluetooth_device_client.cc12
-rw-r--r--chromeos/dbus/bluetooth_input_client.cc2
-rw-r--r--chromeos/dbus/bluetooth_manager_client.cc8
-rw-r--r--chromeos/dbus/bluetooth_node_client.cc2
-rw-r--r--chromeos/dbus/introspectable_client.cc1
-rw-r--r--device/bluetooth/bluetooth_adapter_chromeos.cc36
-rw-r--r--device/bluetooth/bluetooth_device_chromeos.cc32
10 files changed, 65 insertions, 74 deletions
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 4bd9678..4bed9b8 100644
--- a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
+++ b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
@@ -225,7 +225,7 @@ void BluetoothOptionsHandler::EnableChangeCallback(
}
void BluetoothOptionsHandler::EnableChangeError() {
- DVLOG(1) << "Failed to change power state.";
+ VLOG(1) << "Failed to change power state.";
ReportError("bluetoothChangePowerFailed", std::string());
}
@@ -241,7 +241,7 @@ void BluetoothOptionsHandler::FindDevicesCallback(
}
void BluetoothOptionsHandler::FindDevicesError() {
- DVLOG(1) << "Failed to start discovery.";
+ VLOG(1) << "Failed to start discovery.";
ReportError("bluetoothStartDiscoveryFailed", std::string());
}
@@ -270,7 +270,7 @@ void BluetoothOptionsHandler::UpdateDeviceCallback(
// interpretation, and the one shared by BlueZ, is a UTF-8 string
// of as many characters that will fit in that space, thus we
// can use the auth token from JavaScript unmodified.
- DVLOG(1) << "PIN Code supplied: " << address << ": " << auth_token;
+ VLOG(1) << "PIN Code supplied: " << address << ": " << auth_token;
device->SetPinCode(auth_token);
} else if (device->ExpectingPasskey()) {
DeviceConnecting(device);
@@ -282,7 +282,7 @@ void BluetoothOptionsHandler::UpdateDeviceCallback(
unsigned passkey = 0;
base::StringToUint(auth_token, &passkey);
- DVLOG(1) << "Passkey supplied: " << address << ": " << passkey;
+ VLOG(1) << "Passkey supplied: " << address << ": " << passkey;
device->SetPasskey(passkey);
} else {
LOG(WARNING) << "Auth token supplied after pairing ended: " << address
@@ -290,7 +290,7 @@ void BluetoothOptionsHandler::UpdateDeviceCallback(
}
} else {
// Connection request.
- DVLOG(1) << "Connect: " << address;
+ VLOG(1) << "Connect: " << address;
device->Connect(
this,
base::Bind(&base::DoNothing),
@@ -300,19 +300,19 @@ void BluetoothOptionsHandler::UpdateDeviceCallback(
}
} else if (command == kCancelCommand) {
// Cancel pairing.
- DVLOG(1) << "Cancel pairing: " << address;
+ VLOG(1) << "Cancel pairing: " << address;
device->CancelPairing();
} else if (command == kAcceptCommand) {
// Confirm displayed Passkey.
- DVLOG(1) << "Confirm pairing: " << address;
+ VLOG(1) << "Confirm pairing: " << address;
device->ConfirmPairing();
} else if (command == kRejectCommand) {
// Reject displayed Passkey.
- DVLOG(1) << "Reject pairing: " << address;
+ VLOG(1) << "Reject pairing: " << address;
device->RejectPairing();
} else if (command == kDisconnectCommand) {
// Disconnect from device.
- DVLOG(1) << "Disconnect device: " << address;
+ VLOG(1) << "Disconnect device: " << address;
device->Disconnect(
base::Bind(&base::DoNothing),
base::Bind(&BluetoothOptionsHandler::DisconnectError,
@@ -320,7 +320,7 @@ void BluetoothOptionsHandler::UpdateDeviceCallback(
device->address()));
} else if (command == kForgetCommand) {
// Disconnect from device and delete pairing information.
- DVLOG(1) << "Forget device: " << address;
+ VLOG(1) << "Forget device: " << address;
device->Forget(base::Bind(&BluetoothOptionsHandler::ForgetError,
weak_ptr_factory_.GetWeakPtr(),
device->address()));
@@ -334,7 +334,7 @@ void BluetoothOptionsHandler::ConnectError(
device::BluetoothDevice::ConnectErrorCode error_code) {
const char* error_name = NULL;
- DVLOG(1) << "Failed to connect to device: " << address;
+ VLOG(1) << "Failed to connect to device: " << address;
switch (error_code) {
case device::BluetoothDevice::ERROR_UNKNOWN:
error_name = "bluetoothConnectUnknownError";
@@ -367,12 +367,12 @@ void BluetoothOptionsHandler::ConnectError(
}
void BluetoothOptionsHandler::DisconnectError(const std::string& address) {
- DVLOG(1) << "Failed to disconnect from device: " << address;
+ VLOG(1) << "Failed to disconnect from device: " << address;
ReportError("bluetoothDisconnectFailed", address);
}
void BluetoothOptionsHandler::ForgetError(const std::string& address) {
- DVLOG(1) << "Failed to disconnect and unpair device: " << address;
+ VLOG(1) << "Failed to disconnect and unpair device: " << address;
ReportError("bluetoothForgetFailed", address);
}
@@ -388,7 +388,7 @@ void BluetoothOptionsHandler::StopDiscoveryCallback(
}
void BluetoothOptionsHandler::StopDiscoveryError() {
- DVLOG(1) << "Failed to stop discovery.";
+ VLOG(1) << "Failed to stop discovery.";
ReportError("bluetoothStopDiscoveryFailed", std::string());
}
diff --git a/chromeos/dbus/bluetooth_adapter_client.cc b/chromeos/dbus/bluetooth_adapter_client.cc
index b6fd150..354255d 100644
--- a/chromeos/dbus/bluetooth_adapter_client.cc
+++ b/chromeos/dbus/bluetooth_adapter_client.cc
@@ -68,8 +68,6 @@ class BluetoothAdapterClientImpl: public BluetoothAdapterClient,
BluetoothManagerClient* manager_client)
: bus_(bus),
weak_ptr_factory_(this) {
- DVLOG(1) << "Creating BluetoothAdapterClientImpl";
-
DCHECK(manager_client);
manager_client->AddObserver(this);
}
@@ -441,8 +439,8 @@ class BluetoothAdapterClientImpl: public BluetoothAdapterClient,
return;
}
- DVLOG(1) << object_path.value() << ": Device created: "
- << device_path.value();
+ VLOG(1) << object_path.value() << ": Device created: "
+ << device_path.value();
FOR_EACH_OBSERVER(BluetoothAdapterClient::Observer, observers_,
DeviceCreated(object_path, device_path));
}
@@ -469,8 +467,8 @@ class BluetoothAdapterClientImpl: public BluetoothAdapterClient,
return;
}
- DVLOG(1) << object_path.value() << ": Device removed: "
- << device_path.value();
+ VLOG(1) << object_path.value() << ": Device removed: "
+ << device_path.value();
FOR_EACH_OBSERVER(BluetoothAdapterClient::Observer, observers_,
DeviceRemoved(object_path, device_path));
}
@@ -509,7 +507,7 @@ class BluetoothAdapterClientImpl: public BluetoothAdapterClient,
return;
}
- DVLOG(1) << object_path.value() << ": Device found: " << address;
+ VLOG(1) << object_path.value() << ": Device found: " << address;
FOR_EACH_OBSERVER(BluetoothAdapterClient::Observer, observers_,
DeviceFound(object_path, address, device_properties));
}
@@ -536,7 +534,7 @@ class BluetoothAdapterClientImpl: public BluetoothAdapterClient,
return;
}
- DVLOG(1) << object_path.value() << ": Device disappeared: " << address;
+ VLOG(1) << object_path.value() << ": Device disappeared: " << address;
FOR_EACH_OBSERVER(BluetoothAdapterClient::Observer, observers_,
DeviceDisappeared(object_path, address));
}
diff --git a/chromeos/dbus/bluetooth_agent_service_provider.cc b/chromeos/dbus/bluetooth_agent_service_provider.cc
index 2b3811c..786935c 100644
--- a/chromeos/dbus/bluetooth_agent_service_provider.cc
+++ b/chromeos/dbus/bluetooth_agent_service_provider.cc
@@ -39,8 +39,8 @@ class BluetoothAgentServiceProviderImpl : public BluetoothAgentServiceProvider {
delegate_(delegate),
object_path_(object_path),
weak_ptr_factory_(this) {
- DVLOG(1) << "Creating BluetoothAdapterClientImpl for "
- << object_path.value();
+ VLOG(1) << "Creating BluetoothAdapterClientImpl for "
+ << object_path.value();
exported_object_ = bus_->GetExportedObject(object_path_);
diff --git a/chromeos/dbus/bluetooth_device_client.cc b/chromeos/dbus/bluetooth_device_client.cc
index df237e8..00a0f2e 100644
--- a/chromeos/dbus/bluetooth_device_client.cc
+++ b/chromeos/dbus/bluetooth_device_client.cc
@@ -57,7 +57,7 @@ class BluetoothDeviceClientImpl: public BluetoothDeviceClient,
BluetoothAdapterClient* adapter_client)
: bus_(bus),
weak_ptr_factory_(this) {
- DVLOG(1) << "Creating BluetoothDeviceClientImpl";
+ VLOG(1) << "Creating BluetoothDeviceClientImpl";
DCHECK(adapter_client);
adapter_client->AddObserver(this);
@@ -288,7 +288,7 @@ class BluetoothDeviceClientImpl: public BluetoothDeviceClient,
dbus::Signal* signal) {
DCHECK(signal);
- DVLOG(1) << object_path.value() << ": Disconnect requested.";
+ VLOG(1) << object_path.value() << ": Disconnect requested.";
FOR_EACH_OBSERVER(BluetoothDeviceClient::Observer, observers_,
DisconnectRequested(object_path));
}
@@ -317,8 +317,8 @@ class BluetoothDeviceClientImpl: public BluetoothDeviceClient,
return;
}
- DVLOG(1) << object_path.value() << ": Node created: "
- << node_path.value();
+ VLOG(1) << object_path.value() << ": Node created: "
+ << node_path.value();
FOR_EACH_OBSERVER(BluetoothDeviceClient::Observer, observers_,
NodeCreated(object_path, node_path));
}
@@ -345,8 +345,8 @@ class BluetoothDeviceClientImpl: public BluetoothDeviceClient,
return;
}
- DVLOG(1) << object_path.value() << ": Node removed: "
- << node_path.value();
+ VLOG(1) << object_path.value() << ": Node removed: "
+ << node_path.value();
FOR_EACH_OBSERVER(BluetoothDeviceClient::Observer, observers_,
NodeRemoved(object_path, node_path));
}
diff --git a/chromeos/dbus/bluetooth_input_client.cc b/chromeos/dbus/bluetooth_input_client.cc
index 60b9f223..4c7863a 100644
--- a/chromeos/dbus/bluetooth_input_client.cc
+++ b/chromeos/dbus/bluetooth_input_client.cc
@@ -53,8 +53,6 @@ class BluetoothInputClientImpl: public BluetoothInputClient,
BluetoothAdapterClient* adapter_client)
: bus_(bus),
weak_ptr_factory_(this) {
- DVLOG(1) << "Creating BluetoothInputClientImpl";
-
DCHECK(adapter_client);
adapter_client->AddObserver(this);
}
diff --git a/chromeos/dbus/bluetooth_manager_client.cc b/chromeos/dbus/bluetooth_manager_client.cc
index bd09f4d..b8b3126 100644
--- a/chromeos/dbus/bluetooth_manager_client.cc
+++ b/chromeos/dbus/bluetooth_manager_client.cc
@@ -37,8 +37,6 @@ class BluetoothManagerClientImpl : public BluetoothManagerClient {
explicit BluetoothManagerClientImpl(dbus::Bus* bus)
: object_proxy_(NULL),
weak_ptr_factory_(this) {
- DVLOG(1) << "Creating BluetoothManagerClientImpl";
-
// Create the object proxy.
DCHECK(bus);
object_proxy_ = bus->GetObjectProxy(
@@ -153,7 +151,7 @@ class BluetoothManagerClientImpl : public BluetoothManagerClient {
return;
}
- DVLOG(1) << "Adapter added: " << object_path.value();
+ VLOG(1) << "Adapter added: " << object_path.value();
FOR_EACH_OBSERVER(Observer, observers_, AdapterAdded(object_path));
}
@@ -175,7 +173,7 @@ class BluetoothManagerClientImpl : public BluetoothManagerClient {
return;
}
- DVLOG(1) << "Adapter removed: " << object_path.value();
+ VLOG(1) << "Adapter removed: " << object_path.value();
FOR_EACH_OBSERVER(Observer, observers_, AdapterRemoved(object_path));
}
@@ -197,7 +195,7 @@ class BluetoothManagerClientImpl : public BluetoothManagerClient {
return;
}
- DVLOG(1) << "Default adapter changed: " << object_path.value();
+ VLOG(1) << "Default adapter changed: " << object_path.value();
FOR_EACH_OBSERVER(Observer, observers_, DefaultAdapterChanged(object_path));
}
diff --git a/chromeos/dbus/bluetooth_node_client.cc b/chromeos/dbus/bluetooth_node_client.cc
index 3b70ea1..b421e27 100644
--- a/chromeos/dbus/bluetooth_node_client.cc
+++ b/chromeos/dbus/bluetooth_node_client.cc
@@ -42,8 +42,6 @@ class BluetoothNodeClientImpl: public BluetoothNodeClient,
BluetoothDeviceClient* device_client)
: bus_(bus),
weak_ptr_factory_(this) {
- DVLOG(1) << "Creating BluetoothNodeClientImpl";
-
DCHECK(device_client);
device_client->AddObserver(this);
}
diff --git a/chromeos/dbus/introspectable_client.cc b/chromeos/dbus/introspectable_client.cc
index dc6639f..83b09a3 100644
--- a/chromeos/dbus/introspectable_client.cc
+++ b/chromeos/dbus/introspectable_client.cc
@@ -35,7 +35,6 @@ class IntrospectableClientImpl : public IntrospectableClient {
explicit IntrospectableClientImpl(dbus::Bus* bus)
: bus_(bus),
weak_ptr_factory_(this) {
- DVLOG(1) << "Creating IntrospectableClientImpl";
}
virtual ~IntrospectableClientImpl() {
diff --git a/device/bluetooth/bluetooth_adapter_chromeos.cc b/device/bluetooth/bluetooth_adapter_chromeos.cc
index efd97a89..335cd77 100644
--- a/device/bluetooth/bluetooth_adapter_chromeos.cc
+++ b/device/bluetooth/bluetooth_adapter_chromeos.cc
@@ -134,7 +134,7 @@ void BluetoothAdapterChromeOS::ReadLocalOutOfBandPairingData(
}
void BluetoothAdapterChromeOS::TrackDefaultAdapter() {
- DVLOG(1) << "Tracking default adapter";
+ VLOG(1) << "Tracking default adapter";
track_default_ = true;
DBusThreadManager::Get()->GetBluetoothManagerClient()->
DefaultAdapter(base::Bind(&BluetoothAdapterChromeOS::AdapterCallback,
@@ -142,7 +142,7 @@ void BluetoothAdapterChromeOS::TrackDefaultAdapter() {
}
void BluetoothAdapterChromeOS::FindAdapter(const std::string& address) {
- DVLOG(1) << "Using adapter " << address;
+ VLOG(1) << "Using adapter " << address;
track_default_ = false;
DBusThreadManager::Get()->GetBluetoothManagerClient()->
FindAdapter(address,
@@ -175,14 +175,14 @@ void BluetoothAdapterChromeOS::AdapterRemoved(
void BluetoothAdapterChromeOS::ChangeAdapter(
const dbus::ObjectPath& adapter_path) {
if (object_path_.value().empty()) {
- DVLOG(1) << "Adapter path initialized to " << adapter_path.value();
+ VLOG(1) << "Adapter path initialized to " << adapter_path.value();
} else if (object_path_.value() != adapter_path.value()) {
- DVLOG(1) << "Adapter path changed from " << object_path_.value()
- << " to " << adapter_path.value();
+ VLOG(1) << "Adapter path changed from " << object_path_.value()
+ << " to " << adapter_path.value();
RemoveAdapter();
} else {
- DVLOG(1) << "Adapter address updated";
+ VLOG(1) << "Adapter address updated";
}
object_path_ = adapter_path;
@@ -197,7 +197,7 @@ void BluetoothAdapterChromeOS::ChangeAdapter(
// Delay announcing a new adapter until we have an address.
if (address_.empty()) {
- DVLOG(1) << "Adapter address not yet known";
+ VLOG(1) << "Adapter address not yet known";
return;
}
@@ -212,7 +212,7 @@ void BluetoothAdapterChromeOS::ChangeAdapter(
void BluetoothAdapterChromeOS::RemoveAdapter() {
const bool adapter_was_present = IsPresent();
- DVLOG(1) << "Adapter lost.";
+ VLOG(1) << "Adapter lost.";
PoweredChanged(false);
DiscoveringChanged(false);
ClearDevices();
@@ -252,7 +252,7 @@ void BluetoothAdapterChromeOS::OnStartDiscovery(
bool success) {
if (success) {
if (discovering_count_++ == 0) {
- DVLOG(1) << object_path_.value() << ": started discovery.";
+ VLOG(1) << object_path_.value() << ": started discovery.";
// Clear devices found in previous discovery attempts
ClearDiscoveredDevices();
@@ -274,7 +274,7 @@ void BluetoothAdapterChromeOS::OnStopDiscovery(
bool success) {
if (success) {
if (--discovering_count_ == 0) {
- DVLOG(1) << object_path_.value() << ": stopped discovery.";
+ VLOG(1) << object_path_.value() << ": stopped discovery.";
FOR_EACH_OBSERVER(BluetoothAdapter::Observer, observers_,
AdapterDiscoveringChanged(this, false));
@@ -380,8 +380,8 @@ void BluetoothAdapterChromeOS::UpdateDevice(
const bool was_paired = device->IsPaired();
if (!was_paired) {
- DVLOG(1) << "Assigned object path " << device_path.value() << " to device "
- << address;
+ VLOG(1) << "Assigned object path " << device_path.value() << " to device "
+ << address;
device->SetObjectPath(device_path);
}
device->Update(properties, true);
@@ -440,12 +440,12 @@ void BluetoothAdapterChromeOS::DeviceRemoved(
FOR_EACH_OBSERVER(BluetoothAdapter::Observer, observers_,
DeviceRemoved(this, device));
- DVLOG(1) << "Removed device " << device->address();
+ VLOG(1) << "Removed device " << device->address();
delete device;
devices_.erase(temp);
} else {
- DVLOG(1) << "Removed object path from device " << device->address();
+ VLOG(1) << "Removed object path from device " << device->address();
device->RemoveObjectPath();
FOR_EACH_OBSERVER(BluetoothAdapter::Observer, observers_,
@@ -498,7 +498,7 @@ void BluetoothAdapterChromeOS::DeviceFound(
devices_[address] = device;
}
- DVLOG(1) << "Device " << address << " is visible to the adapter";
+ VLOG(1) << "Device " << address << " is visible to the adapter";
device->SetVisible(true);
device->Update(&properties, false);
@@ -531,14 +531,14 @@ void BluetoothAdapterChromeOS::DeviceDisappeared(
FOR_EACH_OBSERVER(BluetoothAdapter::Observer, observers_,
DeviceRemoved(this, device));
- DVLOG(1) << "Discovered device " << device->address()
+ VLOG(1) << "Discovered device " << device->address()
<< " is no longer visible to the adapter";
delete device;
devices_.erase(iter);
} else {
- DVLOG(1) << "Paired device " << device->address()
- << " is no longer visible to the adapter";
+ VLOG(1) << "Paired device " << device->address()
+ << " is no longer visible to the adapter";
device->SetVisible(false);
FOR_EACH_OBSERVER(BluetoothAdapter::Observer, observers_,
diff --git a/device/bluetooth/bluetooth_device_chromeos.cc b/device/bluetooth/bluetooth_device_chromeos.cc
index d40e092..bef006f 100644
--- a/device/bluetooth/bluetooth_device_chromeos.cc
+++ b/device/bluetooth/bluetooth_device_chromeos.cc
@@ -169,7 +169,7 @@ void BluetoothDeviceChromeOS::Connect(
agent_.reset(NULL);
}
- DVLOG(1) << "Pairing: " << address_;
+ VLOG(1) << "Pairing: " << address_;
DBusThreadManager::Get()->GetBluetoothAdapterClient()->
CreatePairedDevice(
adapter_->object_path_,
@@ -371,7 +371,7 @@ void BluetoothDeviceChromeOS::OnCreateDevice(
const base::Closure& callback,
const ConnectErrorCallback& error_callback,
const dbus::ObjectPath& device_path) {
- DVLOG(1) << "Connection successful: " << device_path.value();
+ VLOG(1) << "Connection successful: " << device_path.value();
if (object_path_.value().empty()) {
object_path_ = device_path;
} else {
@@ -483,8 +483,8 @@ void BluetoothDeviceChromeOS::OnServiceRecordsChanged(void) {
// adapter and can't be reconnected from the adapter. To avoid problems with
// devices that don't export this properties we asume they are connectable.
connectable_ = hid_normally_connectable || !hid_reconnect_initiate;
- DVLOG(1) << "ServiceRecordsChanged for " << address_
- << ": connectable = " << connectable_;
+ VLOG(1) << "ServiceRecordsChanged for " << address_
+ << ": connectable = " << connectable_;
}
void BluetoothDeviceChromeOS::OnSetTrusted(bool success) {
@@ -599,8 +599,8 @@ void BluetoothDeviceChromeOS::OnIntrospect(
void BluetoothDeviceChromeOS::OnConnect(const base::Closure& callback,
const std::string& interface_name,
const dbus::ObjectPath& device_path) {
- DVLOG(1) << "Application connection successful: " << device_path.value()
- << ": " << interface_name;
+ VLOG(1) << "Application connection successful: " << device_path.value()
+ << ": " << interface_name;
connecting_applications_counter_--;
// |callback| should only be called once, meaning it cannot be called before
@@ -649,15 +649,15 @@ void BluetoothDeviceChromeOS::DisconnectCallback(
bool success) {
DCHECK(device_path == object_path_);
if (success) {
- DVLOG(1) << "Disconnection successful: " << address_;
+ VLOG(1) << "Disconnection successful: " << address_;
callback.Run();
} else {
if (connected_) {
LOG(WARNING) << "Disconnection failed: " << address_;
error_callback.Run();
} else {
- DVLOG(1) << "Disconnection failed on a already disconnected device: "
- << address_;
+ VLOG(1) << "Disconnection failed on a already disconnected device: "
+ << address_;
callback.Run();
}
}
@@ -745,7 +745,7 @@ void BluetoothDeviceChromeOS::DisconnectRequested(
void BluetoothDeviceChromeOS::Release() {
DCHECK(agent_.get());
- DVLOG(1) << "Release: " << address_;
+ VLOG(1) << "Release: " << address_;
DCHECK(pairing_delegate_);
pairing_delegate_->DismissDisplayOrConfirm();
@@ -762,7 +762,7 @@ void BluetoothDeviceChromeOS::RequestPinCode(
const dbus::ObjectPath& device_path,
const PinCodeCallback& callback) {
DCHECK(agent_.get());
- DVLOG(1) << "RequestPinCode: " << device_path.value();
+ VLOG(1) << "RequestPinCode: " << device_path.value();
DCHECK(pairing_delegate_);
DCHECK(pincode_callback_.is_null());
@@ -775,7 +775,7 @@ void BluetoothDeviceChromeOS::RequestPasskey(
const PasskeyCallback& callback) {
DCHECK(agent_.get());
DCHECK(device_path == object_path_);
- DVLOG(1) << "RequestPasskey: " << device_path.value();
+ VLOG(1) << "RequestPasskey: " << device_path.value();
DCHECK(pairing_delegate_);
DCHECK(passkey_callback_.is_null());
@@ -788,7 +788,7 @@ void BluetoothDeviceChromeOS::DisplayPinCode(
const std::string& pincode) {
DCHECK(agent_.get());
DCHECK(device_path == object_path_);
- DVLOG(1) << "DisplayPinCode: " << device_path.value() << " " << pincode;
+ VLOG(1) << "DisplayPinCode: " << device_path.value() << " " << pincode;
DCHECK(pairing_delegate_);
pairing_delegate_->DisplayPinCode(this, pincode);
@@ -799,7 +799,7 @@ void BluetoothDeviceChromeOS::DisplayPasskey(
uint32 passkey) {
DCHECK(agent_.get());
DCHECK(device_path == object_path_);
- DVLOG(1) << "DisplayPasskey: " << device_path.value() << " " << passkey;
+ VLOG(1) << "DisplayPasskey: " << device_path.value() << " " << passkey;
DCHECK(pairing_delegate_);
pairing_delegate_->DisplayPasskey(this, passkey);
@@ -811,7 +811,7 @@ void BluetoothDeviceChromeOS::RequestConfirmation(
const ConfirmationCallback& callback) {
DCHECK(agent_.get());
DCHECK(device_path == object_path_);
- DVLOG(1) << "RequestConfirmation: " << device_path.value() << " " << passkey;
+ VLOG(1) << "RequestConfirmation: " << device_path.value() << " " << passkey;
DCHECK(pairing_delegate_);
DCHECK(confirmation_callback_.is_null());
@@ -840,7 +840,7 @@ void BluetoothDeviceChromeOS::ConfirmModeChange(
void BluetoothDeviceChromeOS::Cancel() {
DCHECK(agent_.get());
- DVLOG(1) << "Cancel: " << address_;
+ VLOG(1) << "Cancel: " << address_;
DCHECK(pairing_delegate_);
pairing_delegate_->DismissDisplayOrConfirm();