summaryrefslogtreecommitdiffstats
path: root/chromeos/dbus/shill_service_client.h
diff options
context:
space:
mode:
authorstevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-28 17:44:24 +0000
committerstevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-28 17:44:24 +0000
commitfde8b32ad1bb6b192c774f8d5a0e7319415e2edc (patch)
tree87a5aef22a7035bd47eb0e492d9b8d38d5bd4367 /chromeos/dbus/shill_service_client.h
parentdb022e4b81125336f3ed9b8f4ae3e98cdd253e85 (diff)
downloadchromium_src-fde8b32ad1bb6b192c774f8d5a0e7319415e2edc.zip
chromium_src-fde8b32ad1bb6b192c774f8d5a0e7319415e2edc.tar.gz
chromium_src-fde8b32ad1bb6b192c774f8d5a0e7319415e2edc.tar.bz2
Improve network stub behavior
* Add Devices/Services to Manager client when addded to Device or Service client * Do not include services for disabled technologies in service lists BUG=none Review URL: https://codereview.chromium.org/12381002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185273 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/dbus/shill_service_client.h')
-rw-r--r--chromeos/dbus/shill_service_client.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/chromeos/dbus/shill_service_client.h b/chromeos/dbus/shill_service_client.h
index b12cc37..7f9e9b1 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: