summaryrefslogtreecommitdiffstats
path: root/components/wifi/fake_wifi_service.cc
diff options
context:
space:
mode:
authormef@chromium.org <mef@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-13 21:37:32 +0000
committermef@chromium.org <mef@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-13 21:37:32 +0000
commitc55275523a10864086ef2d3ae639c40f70637e7c (patch)
tree3244836057296ad970c44e5d2b53ac1b2b3fd925 /components/wifi/fake_wifi_service.cc
parent29e871c3fd942e586096f192c5b2a814d63df5ae (diff)
downloadchromium_src-c55275523a10864086ef2d3ae639c40f70637e7c.zip
chromium_src-c55275523a10864086ef2d3ae639c40f70637e7c.tar.gz
chromium_src-c55275523a10864086ef2d3ae639c40f70637e7c.tar.bz2
Add method GetKeyFromSystem to WiFiService on Windows and Mac.
BUG=328960 Review URL: https://codereview.chromium.org/156943002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251131 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/wifi/fake_wifi_service.cc')
-rw-r--r--components/wifi/fake_wifi_service.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/components/wifi/fake_wifi_service.cc b/components/wifi/fake_wifi_service.cc
index 28911d2f..ea0e872 100644
--- a/components/wifi/fake_wifi_service.cc
+++ b/components/wifi/fake_wifi_service.cc
@@ -254,6 +254,12 @@ class FakeWiFiService : public WiFiService {
}
}
+ virtual void GetKeyFromSystem(const std::string& network_guid,
+ std::string* key_data,
+ std::string* error) OVERRIDE {
+ *error = "not-found";
+ }
+
virtual void SetEventObservers(
scoped_refptr<base::MessageLoopProxy> message_loop_proxy,
const NetworkGuidListCallback& networks_changed_observer,