summaryrefslogtreecommitdiffstats
path: root/chromeos/dbus/shill_manager_client.h
diff options
context:
space:
mode:
authorstevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-19 21:36:00 +0000
committerstevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-19 21:36:00 +0000
commit04df97cf67a5b7fdcd5bb3b729975ee7fd49c417 (patch)
treed424b7b34a7981380cd22e7bd59016f25eb47b06 /chromeos/dbus/shill_manager_client.h
parent6eb4cc7f9a06e3021aadebe3fb6a10547974eeb8 (diff)
downloadchromium_src-04df97cf67a5b7fdcd5bb3b729975ee7fd49c417.zip
chromium_src-04df97cf67a5b7fdcd5bb3b729975ee7fd49c417.tar.gz
chromium_src-04df97cf67a5b7fdcd5bb3b729975ee7fd49c417.tar.bz2
Implement networkingPrivate.getNetworks
Design Doc and Proposal here: https://docs.google.com/a/google.com/document/d/1QWIzDvf_-iZJW8CINvhxzIERwwKeg72302hNUw0ZrSM/edit This CL depends on https://codereview.chromium.org/275543005/ BUG=371966 Review URL: https://codereview.chromium.org/280023003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271490 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/dbus/shill_manager_client.h')
-rw-r--r--chromeos/dbus/shill_manager_client.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/chromeos/dbus/shill_manager_client.h b/chromeos/dbus/shill_manager_client.h
index e9fc6b0..ae4e593 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,