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

Unified Diff: chromeos/dbus/bluetooth_media_client.cc

Issue 963983002: chromeos/dbus: Add verbose log to media-related clients and service provider. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@disconnect
Patch Set: Created 5 years, 10 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 | chromeos/dbus/bluetooth_media_endpoint_service_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/bluetooth_media_client.cc
diff --git a/chromeos/dbus/bluetooth_media_client.cc b/chromeos/dbus/bluetooth_media_client.cc
index 23fc2ed265e025ed90f82617632123b43ec01415..0bdca3faeee3ebe99dcfff317c517aa00c5c7766 100644
--- a/chromeos/dbus/bluetooth_media_client.cc
+++ b/chromeos/dbus/bluetooth_media_client.cc
@@ -103,6 +103,8 @@ class BluetoothMediaClientImpl
const EndpointProperties& properties,
const base::Closure& callback,
const ErrorCallback& error_callback) override {
+ VLOG(1) << "RegisterEndpoint - endpoint: " << endpoint_path.value();
+
dbus::MethodCall method_call(kBluetoothMediaInterface, kRegisterEndpoint);
dbus::MessageWriter writer(&method_call);
@@ -155,6 +157,8 @@ class BluetoothMediaClientImpl
const dbus::ObjectPath& endpoint_path,
const base::Closure& callback,
const ErrorCallback& error_callback) override {
+ VLOG(1) << "UnregisterEndpoint - endpoint: " << endpoint_path.value();
+
dbus::MethodCall method_call(kBluetoothMediaInterface, kUnregisterEndpoint);
// Send the path to the endpoint.
« no previous file with comments | « no previous file | chromeos/dbus/bluetooth_media_endpoint_service_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698