diff options
Diffstat (limited to 'net/socket/client_socket_handle.h')
-rw-r--r-- | net/socket/client_socket_handle.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/socket/client_socket_handle.h b/net/socket/client_socket_handle.h index f1d85899..0dbb1bc 100644 --- a/net/socket/client_socket_handle.h +++ b/net/socket/client_socket_handle.h @@ -47,11 +47,11 @@ class ClientSocketHandle { // Init may be called multiple times. // // Profiling information for the request is saved to |load_log| if non-NULL. - int Init(LoadLog* load_log, - const std::string& group_name, + int Init(const std::string& group_name, const HostResolver::RequestInfo& resolve_info, int priority, - CompletionCallback* callback); + CompletionCallback* callback, + LoadLog* load_log); // An initialized handle can be reset, which causes it to return to the // un-initialized state. This releases the underlying socket, which in the |