| Index: chromeos/dbus/shill_manager_client.h
|
| diff --git a/chromeos/dbus/shill_manager_client.h b/chromeos/dbus/shill_manager_client.h
|
| index 01dd63a0dfa0aa646eeee5a6423f7f4ab4d138e6..fea40da6d3ee728888512f90c6ba2875ae6ac4d9 100644
|
| --- a/chromeos/dbus/shill_manager_client.h
|
| +++ b/chromeos/dbus/shill_manager_client.h
|
| @@ -40,9 +40,14 @@ class CHROMEOS_EXPORT ShillManagerClient {
|
| virtual void RemoveDevice(const std::string& device_path) = 0;
|
| virtual void AddService(const std::string& service_path,
|
| bool add_to_watch_list) = 0;
|
| + virtual void AddServiceAtIndex(const std::string& service_path,
|
| + size_t index,
|
| + bool add_to_watch_list) = 0;
|
| virtual void RemoveService(const std::string& service_path) = 0;
|
| virtual void AddTechnology(const std::string& type, bool enabled) = 0;
|
| virtual void RemoveTechnology(const std::string& type) = 0;
|
| +
|
| + // Used to reset all properties; does not notify observers.
|
| virtual void ClearProperties() = 0;
|
|
|
| protected:
|
|
|