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

Unified Diff: load.cc

Issue 6606024: Eliminate ConenctionType, etc from chromeos_network.h (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/cros.git@master
Patch Set: Created 9 years, 10 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
« chromeos_network.cc ('K') | « chromeos_network_deprecated.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: load.cc
diff --git a/load.cc b/load.cc
index 6292e35e8720a3b3e3e1ea668907e5920a17dd04..739149260110742573d724bf28c1ef13609d5d95 100644
--- a/load.cc
+++ b/load.cc
@@ -220,8 +220,8 @@ DECL_FUNC_1(DisconnectDataPlanUpdateMonitor, void, DataPlanUpdateMonitor);
DECL_FUNC_1(RetrieveCellularDataPlans, CellularDataPlanList*, const char*);
DECL_FUNC_1(RequestCellularDataPlanUpdate, void, const char*);
DECL_FUNC_1(FreeCellularDataPlanList, void, CellularDataPlanList*);
-DECL_FUNC_3(RequestServiceConnect, void, const char*, NetworkActionCallback,
- void *);
+DECL_FUNC_3(RequestNetworkServiceConnect, void, const char*,
+ NetworkActionCallback, void *);
stevenjb 2011/03/02 23:35:57 Note: This was renamed during a previous CL but no
DECL_FUNC_2(RequestNetworkManagerInfo, void,
NetworkPropertiesCallback, void*);
DECL_FUNC_3(RequestNetworkServiceInfo, void, const char*,
@@ -234,6 +234,10 @@ DECL_FUNC_4(RequestNetworkProfileEntry, void, const char*, const char*,
NetworkPropertiesCallback, void*);
DECL_FUNC_4(RequestWifiServicePath, void, const char*, ConnectionSecurity,
NetworkPropertiesCallback, void*);
+DECL_FUNC_4(RequestHiddenWifiNetwork, void, const char*, const char*,
+ NetworkPropertiesCallback, void*);
+DECL_FUNC_1(RequestNetworkScan, void, const char*);
+DECL_FUNC_2(RequestNetworkDeviceEnable, void, const char*, bool);
DECL_FUNC_2(EnableNetworkDevice, bool, ConnectionType, bool);
DECL_FUNC_1(SetOfflineMode, bool, bool);
DECL_FUNC_2(SetAutoConnect, bool, const char*, bool);
@@ -538,13 +542,16 @@ bool LoadLibcros(const char* path_to_libcros, std::string& error_string) {
INIT_FUNC(RetrieveCellularDataPlans);
INIT_FUNC(RequestCellularDataPlanUpdate);
INIT_FUNC(FreeCellularDataPlanList);
- INIT_FUNC(RequestServiceConnect);
+ INIT_FUNC(RequestNetworkServiceConnect);
INIT_FUNC(RequestNetworkManagerInfo);
INIT_FUNC(RequestNetworkServiceInfo);
INIT_FUNC(RequestNetworkDeviceInfo);
INIT_FUNC(RequestNetworkProfile);
INIT_FUNC(RequestNetworkProfileEntry);
INIT_FUNC(RequestWifiServicePath);
+ INIT_FUNC(RequestHiddenWifiNetwork);
+ INIT_FUNC(RequestNetworkScan);
+ INIT_FUNC(RequestNetworkDeviceEnable);
// Synaptics
INIT_FUNC(SetSynapticsParameter);
« chromeos_network.cc ('K') | « chromeos_network_deprecated.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698