Index: chrome/browser/chromeos/cros/network_library.h |
=================================================================== |
--- chrome/browser/chromeos/cros/network_library.h (revision 45039) |
+++ chrome/browser/chromeos/cros/network_library.h (working copy) |
@@ -182,11 +182,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; |
@@ -277,11 +281,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); |
// Connect to the specified cellular network. |
virtual void ConnectToCellularNetwork(CellularNetwork network); |