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

Unified Diff: chromeos/dbus/shill_manager_client.h

Issue 280023003: Implement networkingPrivate.getNetworks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Feedback Created 6 years, 7 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/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,

Powered by Google App Engine
This is Rietveld 408576698