Index: net/base/network_change_notifier_mac.h |
diff --git a/net/base/network_change_notifier_mac.h b/net/base/network_change_notifier_mac.h |
index 31ad4d55d1a157ebb8a5b2042e8ab4ccb55b81e6..70299291f79b3a1ee3c5fe12a1ed9545699f73f8 100644 |
--- a/net/base/network_change_notifier_mac.h |
+++ b/net/base/network_change_notifier_mac.h |
@@ -36,19 +36,11 @@ class NetworkChangeNotifierMac: public NetworkChangeNotifier { |
: net_config_watcher_(net_config_watcher) {} |
mmenke
2012/08/09 15:13:35
Shouldn't this be de-inlined as well?
hans
2012/08/09 15:35:42
The plugin doesn't consider it to be complex enoug
mmenke
2012/08/09 15:41:51
I'm fine with it as-is, just wasn't sure if you we
|
// NetworkConfigWatcherMac::Delegate implementation: |
- virtual void Init() OVERRIDE { |
- net_config_watcher_->SetInitialConnectionType(); |
- } |
- virtual void StartReachabilityNotifications() OVERRIDE { |
- net_config_watcher_->StartReachabilityNotifications(); |
- } |
+ virtual void Init() OVERRIDE; |
+ virtual void StartReachabilityNotifications() OVERRIDE; |
virtual void SetDynamicStoreNotificationKeys( |
- SCDynamicStoreRef store) OVERRIDE { |
- net_config_watcher_->SetDynamicStoreNotificationKeys(store); |
- } |
- virtual void OnNetworkConfigChange(CFArrayRef changed_keys) OVERRIDE { |
- net_config_watcher_->OnNetworkConfigChange(changed_keys); |
- } |
+ SCDynamicStoreRef store) OVERRIDE; |
+ virtual void OnNetworkConfigChange(CFArrayRef changed_keys) OVERRIDE; |
private: |
NetworkChangeNotifierMac* const net_config_watcher_; |