Chromium Code Reviews| Index: chromeos/network/managed_state.h |
| diff --git a/chromeos/network/managed_state.h b/chromeos/network/managed_state.h |
| index 320739cf9c9da505c895f6ae4cac4b9c2c6d4a49..608cb8524694c6f20630b6b9fb3e2867208773d5 100644 |
| --- a/chromeos/network/managed_state.h |
| +++ b/chromeos/network/managed_state.h |
| @@ -13,6 +13,7 @@ |
| namespace base { |
| class Value; |
| +class DictionaryValue; |
| } |
| namespace chromeos { |
| @@ -57,7 +58,9 @@ class ManagedState { |
| // Called by NetworkStateHandler after all calls to PropertyChanged for the |
| // initial set of properties. Used to update state requiring multiple |
| // parsed properties, e.g. name from hex_ssid in NetworkState. |
|
pneubeck (no reviews)
2013/07/29 19:13:25
nit: remove 'parsed'
stevenjb
2013/07/29 20:25:47
Done.
|
| - virtual void InitialPropertiesReceived(); |
| + // |properties| contains the complete set of initial properties. |
| + virtual void InitialPropertiesReceived( |
| + const base::DictionaryValue& properties); |
| const ManagedType managed_type() const { return managed_type_; } |
| const std::string& path() const { return path_; } |