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/common/net/dns.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/common/net/dns.h')
-rw-r--r-- | chrome/common/net/dns.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/common/net/dns.h b/chrome/common/net/dns.h index 64302ea..7a3f364 100644 --- a/chrome/common/net/dns.h +++ b/chrome/common/net/dns.h @@ -6,19 +6,19 @@ // and dns_master.cc -#ifndef CHROME_COMMON_DNS_H__ -#define CHROME_COMMON_DNS_H__ +#ifndef CHROME_COMMON_DNS_H_ +#define CHROME_COMMON_DNS_H_ +#include <string> #include <vector> -namespace chrome_common_net{ +namespace chrome_common_net { // IPC messages are passed from the renderer to the browser in the form of // Namelist instances. // Each element of this vector is a hostname that needs to be looked up. // The hostnames should never be empty strings. typedef std::vector<std::string> NameList; - } -#endif // CHROME_COMMON_DNS_H__ +#endif // CHROME_COMMON_DNS_H_ |