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

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

Issue 1692005: 2nd attempt to land http://codereview.chromium.org/1676002 for njw... (Closed) Base URL: svn://chrome-svn/chrome/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
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);
« no previous file with comments | « chrome/browser/chromeos/cros/mock_network_library.h ('k') | chrome/browser/chromeos/cros/network_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698