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

Unified Diff: net/base/host_resolver.h

Issue 126303: Add a "LoadLog*" parameter to transactions, hostresolver, clientsocketpool. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync again Created 11 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
« no previous file with comments | « chrome/browser/net/resolve_proxy_msg_helper.cc ('k') | net/base/host_resolver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/host_resolver.h
===================================================================
--- net/base/host_resolver.h (revision 23124)
+++ net/base/host_resolver.h (working copy)
@@ -16,6 +16,7 @@
namespace net {
class AddressList;
+class LoadLog;
// This class represents the task of resolving hostnames (or IP address
// literal) to an AddressList object.
@@ -111,8 +112,13 @@
// result code will be passed to the completion callback. If |req| is
// non-NULL, then |*req| will be filled with a handle to the async request.
// This handle is not valid after the request has completed.
- virtual int Resolve(const RequestInfo& info, AddressList* addresses,
- CompletionCallback* callback, RequestHandle* out_req) = 0;
+ //
+ // Profiling information for the request is saved to |load_log| if non-NULL.
+ virtual int Resolve(LoadLog* load_log,
+ const RequestInfo& info,
+ AddressList* addresses,
+ CompletionCallback* callback,
+ RequestHandle* out_req) = 0;
// Cancels the specified request. |req| is the handle returned by Resolve().
// After a request is cancelled, its completion callback will not be called.
@@ -146,8 +152,10 @@
// Resolves the given hostname (or IP address literal), filling out the
// |addresses| object upon success. See HostResolver::Resolve() for details.
- int Resolve(const HostResolver::RequestInfo& info,
- AddressList* addresses, CompletionCallback* callback);
+ int Resolve(LoadLog* load_log,
+ const HostResolver::RequestInfo& info,
+ AddressList* addresses,
+ CompletionCallback* callback);
private:
// Callback for when the request to |resolver_| completes, so we dispatch
« no previous file with comments | « chrome/browser/net/resolve_proxy_msg_helper.cc ('k') | net/base/host_resolver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698