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

Unified Diff: net/socket/client_socket_pool_base.h

Issue 10854063: Clean-up inline members of nested classes (net/) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing comments Created 8 years, 4 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: net/socket/client_socket_pool_base.h
diff --git a/net/socket/client_socket_pool_base.h b/net/socket/client_socket_pool_base.h
index 834835aede682ea071a12ec35f424d88a81068a2..e35ab29fca11f767943d2ff2a676ac216e3921b4 100644
--- a/net/socket/client_socket_pool_base.h
+++ b/net/socket/client_socket_pool_base.h
@@ -442,9 +442,8 @@ class NET_EXPORT_PRIVATE ClientSocketPoolBaseHelper
typedef std::set<ConnectJob*> ConnectJobSet;
struct CallbackResultPair {
- CallbackResultPair() : result(OK) {}
- CallbackResultPair(const CompletionCallback& callback_in, int result_in)
- : callback(callback_in), result(result_in) {}
+ CallbackResultPair();
+ CallbackResultPair(const CompletionCallback& callback_in, int result_in);
~CallbackResultPair();
CompletionCallback callback;

Powered by Google App Engine
This is Rietveld 408576698