Index: third_party/mojo/src/mojo/edk/system/slave_connection_manager.cc |
diff --git a/third_party/mojo/src/mojo/edk/system/slave_connection_manager.cc b/third_party/mojo/src/mojo/edk/system/slave_connection_manager.cc |
index dfe69d4f450c0d3b7f15820b9de26ea9fc8a835c..aad78a275dc35acf489fe65ea191acae37add3bd 100644 |
--- a/third_party/mojo/src/mojo/edk/system/slave_connection_manager.cc |
+++ b/third_party/mojo/src/mojo/edk/system/slave_connection_manager.cc |
@@ -147,8 +147,7 @@ void SlaveConnectionManager::AllowConnectOnPrivateThread( |
DCHECK(!lock_.Try()); |
DCHECK_EQ(awaiting_ack_type_, NOT_AWAITING_ACK); |
- DVLOG(1) << "Sending AllowConnect: connection ID " |
- << connection_id.ToString(); |
+ DVLOG(1) << "Sending AllowConnect: connection ID " << connection_id; |
if (!raw_channel_->WriteMessage(make_scoped_ptr(new MessageInTransit( |
MessageInTransit::kTypeConnectionManager, |
MessageInTransit::kSubtypeConnectionManagerAllowConnect, |
@@ -172,8 +171,7 @@ void SlaveConnectionManager::CancelConnectOnPrivateThread( |
DCHECK(!lock_.Try()); |
DCHECK_EQ(awaiting_ack_type_, NOT_AWAITING_ACK); |
- DVLOG(1) << "Sending CancelConnect: connection ID " |
- << connection_id.ToString(); |
+ DVLOG(1) << "Sending CancelConnect: connection ID " << connection_id; |
if (!raw_channel_->WriteMessage(make_scoped_ptr(new MessageInTransit( |
MessageInTransit::kTypeConnectionManager, |
MessageInTransit::kSubtypeConnectionManagerCancelConnect, |
@@ -201,7 +199,7 @@ void SlaveConnectionManager::ConnectOnPrivateThread( |
DCHECK(!lock_.Try()); |
DCHECK_EQ(awaiting_ack_type_, NOT_AWAITING_ACK); |
- DVLOG(1) << "Sending Connect: connection ID " << connection_id.ToString(); |
+ DVLOG(1) << "Sending Connect: connection ID " << connection_id; |
if (!raw_channel_->WriteMessage(make_scoped_ptr(new MessageInTransit( |
MessageInTransit::kTypeConnectionManager, |
MessageInTransit::kSubtypeConnectionManagerConnect, |