Index: chromeos/dbus/shill_manager_client.h |
diff --git a/chromeos/dbus/shill_manager_client.h b/chromeos/dbus/shill_manager_client.h |
index e9fc6b0c1aff6d139a56db99fae5c2946a6ba11e..ae4e5930b29544611ffbee075f8f35f712aa8a7a 100644 |
--- a/chromeos/dbus/shill_manager_client.h |
+++ b/chromeos/dbus/shill_manager_client.h |
@@ -61,11 +61,12 @@ class CHROMEOS_EXPORT ShillManagerClient : public DBusClient { |
virtual void SetManagerProperty(const std::string& key, |
const base::Value& value) = 0; |
- // Add/Remove/ClearService should only be called from ShillServiceClient. |
+ // Modify services in the Manager's list. |
virtual void AddManagerService(const std::string& service_path, |
bool add_to_visible_list, |
bool add_to_watch_list) = 0; |
- virtual void RemoveManagerService(const std::string& service_path) = 0; |
+ virtual void RemoveManagerService(const std::string& service_path, |
+ bool remove_from_complete_list) = 0; |
virtual void ClearManagerServices() = 0; |
// Called by ShillServiceClient when a service's State property changes, |