Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(857)

Unified Diff: net/base/network_change_notifier_mac.cc

Issue 7009002: Fix debug crash caused by NetworkChangeNotifierChromeos. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change NotifyObserversOfOnlineStateChange call to static. Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/network_change_notifier.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/network_change_notifier_mac.cc
diff --git a/net/base/network_change_notifier_mac.cc b/net/base/network_change_notifier_mac.cc
index a4c4d2d4c95859237f1a9455ef77469b1f35f170..cde4d6e6e98e4c69d3cd02cc7048c3299d0d8cbd 100644
--- a/net/base/network_change_notifier_mac.cc
+++ b/net/base/network_change_notifier_mac.cc
@@ -122,7 +122,7 @@ void NetworkChangeNotifierMac::ReachabilityCallback(
bool old_reachability = notifier_mac->network_reachable_;
notifier_mac->network_reachable_ = reachable && !connection_required;
if (old_reachability != notifier_mac->network_reachable_)
- notifier_mac->NotifyObserversOfOnlineStateChange();
+ NotifyObserversOfOnlineStateChange();
}
} // namespace net
« no previous file with comments | « net/base/network_change_notifier.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698