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

Side by Side Diff: net/base/host_resolver_impl.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/base/host_resolver.cc ('k') | net/base/host_resolver_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_BASE_HOST_RESOLVER_IMPL_H_ 5 #ifndef NET_BASE_HOST_RESOLVER_IMPL_H_
6 #define NET_BASE_HOST_RESOLVER_IMPL_H_ 6 #define NET_BASE_HOST_RESOLVER_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 HostResolverImpl(HostResolverProc* resolver_proc, 50 HostResolverImpl(HostResolverProc* resolver_proc,
51 int max_cache_entries, 51 int max_cache_entries,
52 int cache_duration_ms); 52 int cache_duration_ms);
53 53
54 // If any completion callbacks are pending when the resolver is destroyed, 54 // If any completion callbacks are pending when the resolver is destroyed,
55 // the host resolutions are cancelled, and the completion callbacks will not 55 // the host resolutions are cancelled, and the completion callbacks will not
56 // be called. 56 // be called.
57 virtual ~HostResolverImpl(); 57 virtual ~HostResolverImpl();
58 58
59 // HostResolver methods: 59 // HostResolver methods:
60 virtual int Resolve(const RequestInfo& info, AddressList* addresses, 60 virtual int Resolve(LoadLog* load_log,
61 CompletionCallback* callback, RequestHandle* out_req); 61 const RequestInfo& info,
62 AddressList* addresses,
63 CompletionCallback* callback,
64 RequestHandle* out_req);
62 virtual void CancelRequest(RequestHandle req); 65 virtual void CancelRequest(RequestHandle req);
63 virtual void AddObserver(Observer* observer); 66 virtual void AddObserver(Observer* observer);
64 virtual void RemoveObserver(Observer* observer); 67 virtual void RemoveObserver(Observer* observer);
65 68
66 // TODO(eroman): temp hack for http://crbug.com/15513 69 // TODO(eroman): temp hack for http://crbug.com/15513
67 virtual void Shutdown(); 70 virtual void Shutdown();
68 71
69 private: 72 private:
70 class Job; 73 class Job;
71 class Request; 74 class Request;
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 130
128 // TODO(eroman): temp hack for http://crbug.com/15513 131 // TODO(eroman): temp hack for http://crbug.com/15513
129 bool shutdown_; 132 bool shutdown_;
130 133
131 DISALLOW_COPY_AND_ASSIGN(HostResolverImpl); 134 DISALLOW_COPY_AND_ASSIGN(HostResolverImpl);
132 }; 135 };
133 136
134 } // namespace net 137 } // namespace net
135 138
136 #endif // NET_BASE_HOST_RESOLVER_IMPL_H_ 139 #endif // NET_BASE_HOST_RESOLVER_IMPL_H_
OLDNEW
« no previous file with comments | « net/base/host_resolver.cc ('k') | net/base/host_resolver_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698