diff options
author | szym@chromium.org <szym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-31 19:52:40 +0000 |
---|---|---|
committer | szym@chromium.org <szym@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-31 19:52:40 +0000 |
commit | bb0e34549798b05741950f793b572e600de0c2cd (patch) | |
tree | d8ec98dc3d9378c3036bfa92493ae9b83ea1b92d /net/base/network_change_notifier_mac.h | |
parent | 90c8b9ca6040546b9b08c03188a604a9f348dd89 (diff) | |
download | chromium_src-bb0e34549798b05741950f793b572e600de0c2cd.zip chromium_src-bb0e34549798b05741950f793b572e600de0c2cd.tar.gz chromium_src-bb0e34549798b05741950f793b572e600de0c2cd.tar.bz2 |
[net] Move DnsConfigService to NetworkChangeNotifier.
This merges DnsConfigWatcher back into DnsConfigService and installs
DnsConfigService at NetworkChangeNotifier. It removes |detail| from
OnDNSChanged callback, and exposes NetworkChangeNotifier::GetDnsConfig.
BUG=142142
Review URL: https://chromiumcodereview.appspot.com/10873018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@154485 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/network_change_notifier_mac.h')
-rw-r--r-- | net/base/network_change_notifier_mac.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/base/network_change_notifier_mac.h b/net/base/network_change_notifier_mac.h index 7029929..9a9e6bf 100644 --- a/net/base/network_change_notifier_mac.h +++ b/net/base/network_change_notifier_mac.h @@ -26,8 +26,6 @@ class NetworkChangeNotifierMac: public NetworkChangeNotifier { // NetworkChangeNotifier implementation: virtual ConnectionType GetCurrentConnectionType() const OVERRIDE; - class DnsWatcherThread; - // Forwarder just exists to keep the NetworkConfigWatcherMac API out of // NetworkChangeNotifierMac's public API. class Forwarder : public NetworkConfigWatcherMac::Delegate { @@ -47,6 +45,9 @@ class NetworkChangeNotifierMac: public NetworkChangeNotifier { DISALLOW_COPY_AND_ASSIGN(Forwarder); }; + private: + class DnsConfigServiceThread; + // Methods directly called by the NetworkConfigWatcherMac::Delegate: void StartReachabilityNotifications(); void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store); @@ -70,8 +71,7 @@ class NetworkChangeNotifierMac: public NetworkChangeNotifier { Forwarder forwarder_; scoped_ptr<const NetworkConfigWatcherMac> config_watcher_; - // Thread on which we can run DnsConfigWatcher, which requires TYPE_IO. - scoped_ptr<DnsWatcherThread> dns_watcher_thread_; + scoped_ptr<DnsConfigServiceThread> dns_config_service_thread_; DISALLOW_COPY_AND_ASSIGN(NetworkChangeNotifierMac); }; |