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

Unified Diff: chromeos/network/managed_state.h

Issue 21030006: NetworkState cleanup, pass properties to InitialPropertiesReceived (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 5 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/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_; }

Powered by Google App Engine
This is Rietveld 408576698