| Index: chromeos/dbus/shill_service_client.h
|
| diff --git a/chromeos/dbus/shill_service_client.h b/chromeos/dbus/shill_service_client.h
|
| index b12cc3734f02f4ca41f60972737e543566d040e8..7f9e9b149419fffbd5ae0dd7c8190edd4d43e43d 100644
|
| --- a/chromeos/dbus/shill_service_client.h
|
| +++ b/chromeos/dbus/shill_service_client.h
|
| @@ -47,11 +47,14 @@ class CHROMEOS_EXPORT ShillServiceClient {
|
| virtual void AddService(const std::string& service_path,
|
| const std::string& name,
|
| const std::string& type,
|
| - const std::string& state) = 0;
|
| + const std::string& state,
|
| + bool add_to_watch_list) = 0;
|
| virtual void RemoveService(const std::string& service_path) = 0;
|
| virtual void SetServiceProperty(const std::string& service_path,
|
| const std::string& property,
|
| const base::Value& value) = 0;
|
| + virtual const base::DictionaryValue* GetServiceProperties(
|
| + const std::string& service_path) const = 0;
|
| virtual void ClearServices() = 0;
|
|
|
| protected:
|
|
|