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 /net/base/dns_resolution_observer.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 'net/base/dns_resolution_observer.h')
-rw-r--r-- | net/base/dns_resolution_observer.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/net/base/dns_resolution_observer.h b/net/base/dns_resolution_observer.h index 3873d8b..1fd3c74 100644 --- a/net/base/dns_resolution_observer.h +++ b/net/base/dns_resolution_observer.h @@ -10,8 +10,8 @@ // Remove'd during process termination. -#ifndef NET_BASE_DNS_RESOLUTION_OBSERVER_H__ -#define NET_BASE_DNS_RESOLUTION_OBSERVER_H__ +#ifndef NET_BASE_DNS_RESOLUTION_OBSERVER_H_ +#define NET_BASE_DNS_RESOLUTION_OBSERVER_H_ #include <string> @@ -19,6 +19,8 @@ namespace net { class DnsResolutionObserver { public: + virtual ~DnsResolutionObserver() {} + // For each OnStartResolution() notification, there should be a later // OnFinishResolutionWithStatus() indicating completion of the resolution // activity. @@ -51,8 +53,7 @@ DnsResolutionObserver* RemoveDnsResolutionObserver(); // to any registered observer. void DidStartDnsResolution(const std::string& name, void* context); void DidFinishDnsResolutionWithStatus(bool was_resolved, void* context); - } // namspace net -#endif // NET_BASE_DNS_RESOLUTION_OBSERVER_H__ +#endif // NET_BASE_DNS_RESOLUTION_OBSERVER_H_ |