Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(426)

Unified Diff: chrome/browser/chromeos/cros/network_library.h

Issue 1676002: WifiConfigView - support networks with 802.1x authentication by... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chromeos/cros/network_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chromeos/cros/network_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698