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