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

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

Issue 2631773002: Convert VLOG -> DVLOG in content/browser/bluetooth (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « no previous file | content/browser/bluetooth/bluetooth_device_chooser_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/bluetooth/bluetooth_allowed_devices_map.cc
diff --git a/content/browser/bluetooth/bluetooth_allowed_devices_map.cc b/content/browser/bluetooth/bluetooth_allowed_devices_map.cc
index 767ea23886ee8e530b0b47efdd90ced845d11dc3..08e1062641d6c007c1c67064827c11cece3fbd77 100644
--- a/content/browser/bluetooth/bluetooth_allowed_devices_map.cc
+++ b/content/browser/bluetooth/bluetooth_allowed_devices_map.cc
@@ -25,7 +25,7 @@ const WebBluetoothDeviceId& BluetoothAllowedDevicesMap::AddDevice(
const url::Origin& origin,
const std::string& device_address,
const blink::mojom::WebBluetoothRequestDeviceOptionsPtr& options) {
- VLOG(1) << "Adding a device to Map of Allowed Devices.";
+ DVLOG(1) << "Adding a device to Map of Allowed Devices.";
// "Unique" Origins generate the same key in maps, therefore are not
// supported.
@@ -34,7 +34,7 @@ const WebBluetoothDeviceId& BluetoothAllowedDevicesMap::AddDevice(
auto device_address_to_id_map = origin_to_device_address_to_id_map_[origin];
auto id_iter = device_address_to_id_map.find(device_address);
if (id_iter != device_address_to_id_map.end()) {
- VLOG(1) << "Device already in map of allowed devices.";
+ DVLOG(1) << "Device already in map of allowed devices.";
const auto& device_id = id_iter->second;
AddUnionOfServicesTo(
@@ -43,7 +43,7 @@ const WebBluetoothDeviceId& BluetoothAllowedDevicesMap::AddDevice(
return origin_to_device_address_to_id_map_[origin][device_address];
}
const WebBluetoothDeviceId device_id = GenerateUniqueDeviceId();
- VLOG(1) << "Id generated for device: " << device_id;
+ DVLOG(1) << "Id generated for device: " << device_id;
origin_to_device_address_to_id_map_[origin][device_address] = device_id;
origin_to_device_id_to_address_map_[origin][device_id] = device_address;
« no previous file with comments | « no previous file | content/browser/bluetooth/bluetooth_device_chooser_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698