diff options
Diffstat (limited to 'chrome/browser/sync/engine/net/server_connection_manager.cc')
-rw-r--r-- | chrome/browser/sync/engine/net/server_connection_manager.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chrome/browser/sync/engine/net/server_connection_manager.cc b/chrome/browser/sync/engine/net/server_connection_manager.cc index 6d35811..c1801c8 100644 --- a/chrome/browser/sync/engine/net/server_connection_manager.cc +++ b/chrome/browser/sync/engine/net/server_connection_manager.cc @@ -345,12 +345,11 @@ bool FillMessageWithShareDetails(sync_pb::ClientToServerMessage* csm, return true; } -} // namespace browser_sync - -std::ostream& operator << (std::ostream& s, - const struct browser_sync::HttpResponse& hr) { +std::ostream& operator << (std::ostream& s, const struct HttpResponse& hr) { s << " Response Code (bogus on error): " << hr.response_code; s << " Content-Length (bogus on error): " << hr.content_length; s << " Server Status: " << hr.server_status; return s; } + +} // namespace browser_sync |