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

Side by Side Diff: net/dns/dns_client.cc

Issue 9667025: [net/dns] Serve requests from HOSTS file if possible. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added NumberOfAddresses checks. Created 8 years, 9 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/dns/dns_client.h ('k') | net/dns/dns_test_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "net/dns/dns_client.h"
6
7 #include "base/bind.h"
8 #include "base/rand_util.h"
9 #include "net/base/net_log.h"
10 #include "net/dns/dns_config_service.h"
11 #include "net/dns/dns_session.h"
12 #include "net/dns/dns_transaction.h"
13 #include "net/socket/client_socket_factory.h"
14
15 namespace net {
16
17 namespace {
18
19 class DnsClientImpl : public DnsClient {
20 public:
21 explicit DnsClientImpl(NetLog* net_log) : net_log_(net_log) {}
22
23 virtual void SetConfig(const DnsConfig& config) OVERRIDE {
24 factory_.reset();
25 session_.release();
26 if (config.IsValid()) {
27 session_ = new DnsSession(config,
28 ClientSocketFactory::GetDefaultFactory(),
29 base::Bind(&base::RandInt),
30 net_log_);
31 factory_ = DnsTransactionFactory::CreateFactory(session_);
32 }
33 }
34
35 virtual const DnsConfig* GetConfig() const OVERRIDE {
36 return session_.get() ? &session_->config() : NULL;
37 }
38
39 virtual DnsTransactionFactory* GetTransactionFactory() OVERRIDE {
40 return session_.get() ? factory_.get() : NULL;
41 }
42
43 private:
44 scoped_refptr<DnsSession> session_;
45 scoped_ptr<DnsTransactionFactory> factory_;
46
47 NetLog* net_log_;
48 };
49
50 } // namespace
51
52 // static
53 scoped_ptr<DnsClient> DnsClient::CreateClient(NetLog* net_log) {
54 return scoped_ptr<DnsClient>(new DnsClientImpl(net_log));
55 }
56
57 } // namespace net
58
OLDNEW
« no previous file with comments | « net/dns/dns_client.h ('k') | net/dns/dns_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698