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

Unified Diff: chromeos/network/network_state_handler_observer.h

Issue 12634019: NetworkChangeNotifierChromeos: Handle IPConfig property changes on the default network (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more cleanup Created 7 years, 9 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
Index: chromeos/network/network_state_handler_observer.h
diff --git a/chromeos/network/network_state_handler_observer.h b/chromeos/network/network_state_handler_observer.h
index a23076cbfa9a810dfd82f1ec5774c68ce3e32b33..cf4858812fef6ff1e625429d41b3334b5803df3d 100644
--- a/chromeos/network/network_state_handler_observer.h
+++ b/chromeos/network/network_state_handler_observer.h
@@ -33,8 +33,11 @@ class CHROMEOS_EXPORT NetworkStateHandlerObserver {
// The list of devices changed, or a property changed (e.g. scanning).
virtual void DeviceListChanged();
- // The default network changed (includes VPNs) or its connection state
- // changed. |network| will be NULL if there is no longer a default network.
+ // The default network changed (includes VPNs) or one of its properties
+ // changed. This won't be called if the WiFi signal strength property
+ // changes. If you are interested in those events, use
stevenjb 2013/03/27 22:18:52 nit: s/If you are/If (avoid "you" in comments)
gauravsh 2013/03/27 23:16:04 Done.
+ // NetworkPropertiesUpdated() below.
+ // |network| will be NULL if there is no longer a default network.
virtual void DefaultNetworkChanged(const NetworkState* network);
// The connection state of |network| changed.

Powered by Google App Engine
This is Rietveld 408576698