Index: chromeos/dbus/shill_ipconfig_client_stub.h |
diff --git a/chromeos/dbus/shill_ipconfig_client_stub.h b/chromeos/dbus/shill_ipconfig_client_stub.h |
index 1325bba5ef9f7f4e3e307e914af2174f018abc52..c4ab7d1974f9fa510f9510cc2a588bfd9527e15a 100644 |
--- a/chromeos/dbus/shill_ipconfig_client_stub.h |
+++ b/chromeos/dbus/shill_ipconfig_client_stub.h |
@@ -42,10 +42,12 @@ class ShillIPConfigClientStub : public ShillIPConfigClient { |
const VoidDBusMethodCallback& callback) OVERRIDE; |
private: |
- // Runs callback with |properties_|. |
- void PassProperties(const DictionaryValueCallback& callback) const; |
+ // Runs callback with |values|. |
+ void PassProperties(const base::DictionaryValue* values, |
+ const DictionaryValueCallback& callback) const; |
- base::DictionaryValue properties_; |
+ // Dictionary of <ipconfig_path, Property dictionaries> |
pneubeck (no reviews)
2013/03/28 10:37:54
nit: Property -> property
gauravsh
2013/03/28 18:48:54
Done.
|
+ base::DictionaryValue stub_ipconfig_; |
pneubeck (no reviews)
2013/03/28 10:37:54
plural?
this is already part of a stub. 'ipconfigs
gauravsh
2013/03/28 18:48:54
Done.
|
// Note: This should remain the last member so it'll be destroyed and |
// invalidate its weak pointers before any other members are destroyed. |