diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-21 22:40:35 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-21 22:40:35 +0000 |
commit | 740e6bdb0b63c45e1e44d73f473f330b69853c1c (patch) | |
tree | 83e2ef11c38fe80cf3666de06cfc6f2a8b9181ef /net/base/network_change_notifier_mac.h | |
parent | 3d8d1c9f38d1f4f26a56ad03d3fa920791bc50ea (diff) | |
download | chromium_src-740e6bdb0b63c45e1e44d73f473f330b69853c1c.zip chromium_src-740e6bdb0b63c45e1e44d73f473f330b69853c1c.tar.gz chromium_src-740e6bdb0b63c45e1e44d73f473f330b69853c1c.tar.bz2 |
Pass in NetLog to NetworkChangeNotifier.
BUG=46822
Review URL: http://codereview.chromium.org/2857009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50402 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 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/base/network_change_notifier_mac.h b/net/base/network_change_notifier_mac.h index 2ffaaba..096b3bd 100644 --- a/net/base/network_change_notifier_mac.h +++ b/net/base/network_change_notifier_mac.h @@ -20,10 +20,12 @@ class Thread; namespace net { +class NetLog; + class NetworkChangeNotifierMac : public NetworkChangeNotifier, public NonThreadSafe { public: - NetworkChangeNotifierMac(); + explicit NetworkChangeNotifierMac(NetLog* net_log); void OnIPAddressChanged(); @@ -52,6 +54,8 @@ class NetworkChangeNotifierMac : public NetworkChangeNotifier, // Used to initialize the notifier thread. ScopedRunnableMethodFactory<NetworkChangeNotifierMac> method_factory_; + NetLog* const net_log_; + DISALLOW_COPY_AND_ASSIGN(NetworkChangeNotifierMac); }; |