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

Unified Diff: blimp/net/browser_connection_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/browser_connection_handler.cc
diff --git a/blimp/net/browser_connection_handler.cc b/blimp/net/browser_connection_handler.cc
index 78009cc3343e81d4d7a9d3477f98e2cef65daefb..f4977f96ec46c1abfabbd0d1cd79cc9a1e4579f2 100644
--- a/blimp/net/browser_connection_handler.cc
+++ b/blimp/net/browser_connection_handler.cc
@@ -43,7 +43,7 @@ scoped_ptr<BlimpMessageProcessor> BrowserConnectionHandler::RegisterFeature(
void BrowserConnectionHandler::HandleConnection(
scoped_ptr<BlimpConnection> connection) {
DCHECK(connection);
- VLOG(1) << "HandleConnection " << connection;
+ VLOG(1) << "HandleConnection " << connection.get();
if (connection_) {
DropCurrentConnection();

Powered by Google App Engine
This is Rietveld 408576698