diff options
author | jar@google.com <jar@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-27 18:55:52 +0000 |
---|---|---|
committer | jar@google.com <jar@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-27 18:55:52 +0000 |
commit | e8013b3d4636c1921e5f1a5977c3e6fa86eed8d8 (patch) | |
tree | 2598de7a62337cf4b64dfa2303be9c4d0d6b21ac /chrome/browser/net/dns_host_info.h | |
parent | b099217a85bd514c1e96764e5d75269cd3c2799c (diff) | |
download | chromium_src-e8013b3d4636c1921e5f1a5977c3e6fa86eed8d8.zip chromium_src-e8013b3d4636c1921e5f1a5977c3e6fa86eed8d8.tar.gz chromium_src-e8013b3d4636c1921e5f1a5977c3e6fa86eed8d8.tar.bz2 |
Cleanup of DNS prefetch related files
I have a separate change list coming to support predictive DNS resolutions,
so I pulled out a pile of mechanical changes (with no semantic changes
intendend).
r=mbelshe
Review URL: http://codereview.chromium.org/8624
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4015 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/net/dns_host_info.h')
-rw-r--r-- | chrome/browser/net/dns_host_info.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/net/dns_host_info.h b/chrome/browser/net/dns_host_info.h index d54da84..ee446e1 100644 --- a/chrome/browser/net/dns_host_info.h +++ b/chrome/browser/net/dns_host_info.h @@ -8,8 +8,8 @@ // to a slave, to resolution by the (blocking) DNS service as either FOUND or // NO_SUCH_NAME. -#ifndef CHROME_BROWSER_NET_DNS_HOST_INFO_H__ -#define CHROME_BROWSER_NET_DNS_HOST_INFO_H__ +#ifndef CHROME_BROWSER_NET_DNS_HOST_INFO_H_ +#define CHROME_BROWSER_NET_DNS_HOST_INFO_H_ #include <string> #include <vector> @@ -141,10 +141,10 @@ class DnsHostInfo { // We put these objects into a std::map, and hence we // need some "evil" constructors. - // DISALLOW_EVIL_CONSTRUCTORS(DnsHostInfo); + // DISALLOW_COPY_AND_ASSIGN(DnsHostInfo); }; } // namespace chrome_browser_net -#endif // CHROME_BROWSER_NET_DNS_HOST_INFO_H__ +#endif // CHROME_BROWSER_NET_DNS_HOST_INFO_H_ |