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

Unified Diff: blimp/net/engine_authentication_handler.cc

Issue 1609923002: Fix remaining incompatibilities between scoped_ptr and unique_ptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: blimp/net/engine_authentication_handler.cc
diff --git a/blimp/net/engine_authentication_handler.cc b/blimp/net/engine_authentication_handler.cc
index fddfab3208bacb314b281c7ff4cc58792ee9fbd9..cc6b04796902391b038940ed7c79920a04b3133a 100644
--- a/blimp/net/engine_authentication_handler.cc
+++ b/blimp/net/engine_authentication_handler.cc
@@ -106,7 +106,7 @@ void Authenticator::ProcessMessage(scoped_ptr<BlimpMessage> message,
<< message->protocol_control().start_connection().client_token();
OnConnectionAuthenticated(true);
} else {
- DVLOG(1) << "Expected START_CONNECTION message, got " << message
+ DVLOG(1) << "Expected START_CONNECTION message, got " << message.get()
<< " instead.";
OnConnectionAuthenticated(false);
}

Powered by Google App Engine
This is Rietveld 408576698