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

Side by Side Diff: chrome/browser/net/dns_probe_service.h

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
« no previous file with comments | « chrome/browser/net/dns_probe_runner.h ('k') | chrome/browser/net/dns_probe_test_util.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) 2012 The Chromium Authors. All rights reserved. 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 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 CHROME_BROWSER_NET_DNS_PROBE_SERVICE_H_ 5 #ifndef CHROME_BROWSER_NET_DNS_PROBE_SERVICE_H_
6 #define CHROME_BROWSER_NET_DNS_PROBE_SERVICE_H_ 6 #define CHROME_BROWSER_NET_DNS_PROBE_SERVICE_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h"
11 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/time/time.h" 13 #include "base/time/time.h"
14 #include "chrome/browser/net/dns_probe_runner.h" 14 #include "chrome/browser/net/dns_probe_runner.h"
15 #include "components/error_page/common/net_error_info.h" 15 #include "components/error_page/common/net_error_info.h"
16 #include "net/base/network_change_notifier.h" 16 #include "net/base/network_change_notifier.h"
17 17
18 namespace net { 18 namespace net {
19 class DnsClient; 19 class DnsClient;
20 struct DnsConfig; 20 struct DnsConfig;
21 } 21 }
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 // DnsProbeRunners for the system DNS configuration and a public DNS server. 73 // DnsProbeRunners for the system DNS configuration and a public DNS server.
74 DnsProbeRunner system_runner_; 74 DnsProbeRunner system_runner_;
75 DnsProbeRunner public_runner_; 75 DnsProbeRunner public_runner_;
76 76
77 DISALLOW_COPY_AND_ASSIGN(DnsProbeService); 77 DISALLOW_COPY_AND_ASSIGN(DnsProbeService);
78 }; 78 };
79 79
80 } // namespace chrome_browser_net 80 } // namespace chrome_browser_net
81 81
82 #endif // CHROME_BROWSER_NET_DNS_PROBE_SERVICE_H_ 82 #endif // CHROME_BROWSER_NET_DNS_PROBE_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/net/dns_probe_runner.h ('k') | chrome/browser/net/dns_probe_test_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698