diff options
author | stevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-15 08:51:17 +0000 |
---|---|---|
committer | stevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-15 08:51:17 +0000 |
commit | 2632f5046d811f8780484cbaf983f3c9a97c9ea9 (patch) | |
tree | aee09fbc24f1bb9524de64726638ddd3c8f826f3 /chromeos/dbus/shill_device_client.h | |
parent | d2397d877f3cd67b0010abecb451ae390cf789b6 (diff) | |
download | chromium_src-2632f5046d811f8780484cbaf983f3c9a97c9ea9.zip chromium_src-2632f5046d811f8780484cbaf983f3c9a97c9ea9.tar.gz chromium_src-2632f5046d811f8780484cbaf983f3c9a97c9ea9.tar.bz2 |
Deprecate ShillNetworkClient and add GeolocationHandler
Shill deprecated Manager.Network which was being used to get wifi access point data.
This eliminates the dead code and adds GeolocationHandler which currently queries Shill.Manager for geolocation data, and caches and returns the result.
BUG=167987
For chrome/browser/geolocation:
TBR=joth@chromium.org
Review URL: https://chromiumcodereview.appspot.com/11887008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176858 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/dbus/shill_device_client.h')
-rw-r--r-- | chromeos/dbus/shill_device_client.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chromeos/dbus/shill_device_client.h b/chromeos/dbus/shill_device_client.h index 7eb415e..5f7b64d 100644 --- a/chromeos/dbus/shill_device_client.h +++ b/chromeos/dbus/shill_device_client.h @@ -46,10 +46,12 @@ class CHROMEOS_EXPORT ShillDeviceClient { public: virtual void AddDevice(const std::string& device_path, const std::string& type, - const std::string& object_path, - const std::string& connection_path) = 0; + const std::string& object_path) = 0; virtual void RemoveDevice(const std::string& device_path) = 0; virtual void ClearDevices() = 0; + virtual void SetDeviceProperty(const std::string& device_path, + const std::string& name, + const base::Value& value) = 0; protected: ~TestInterface() {} |