Index: chrome/browser/chromeos/cros/network_library.h |
=================================================================== |
--- chrome/browser/chromeos/cros/network_library.h (revision 45218) |
+++ chrome/browser/chromeos/cros/network_library.h (working copy) |
@@ -190,11 +190,15 @@ |
// Connect to the specified wireless network with password. |
virtual void ConnectToWifiNetwork(WifiNetwork network, |
- const string16& password) = 0; |
+ const string16& password, |
+ const string16& identity, |
+ const string16& certpath) = 0; |
// Connect to the specified wifi ssid with password. |
virtual void ConnectToWifiNetwork(const string16& ssid, |
- const string16& password) = 0; |
+ const string16& password, |
+ const string16& identity, |
+ const string16& certpath) = 0; |
// Connect to the specified cellular network. |
virtual void ConnectToCellularNetwork(CellularNetwork network) = 0; |
@@ -301,11 +305,15 @@ |
// Connect to the specified wireless network with password. |
virtual void ConnectToWifiNetwork(WifiNetwork network, |
- const string16& password); |
+ const string16& password, |
+ const string16& identity, |
+ const string16& certpath); |
// Connect to the specified wifi ssid with password. |
virtual void ConnectToWifiNetwork(const string16& ssid, |
- const string16& password); |
+ const string16& password, |
+ const string16& identity, |
+ const string16& certpath); |
// Forget the passed in wifi network. |
virtual void ForgetWifiNetwork(const WifiNetwork& network); |