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

Unified Diff: load.cc

Issue 6896001: Implement SetNetworkDeviceProperty() and ClearNetworkDeviceProperty(). (Closed) Base URL: ssh://gitrw.chromium.org:9222/cros.git@master
Patch Set: Slight tune-up of test program Created 9 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 | « chromeos_network.cc ('k') | network_property_test.cc » ('j') | 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 73adb43f1377cf0a291345e6e4e4b444af4325ef..1230158b99edf9e93e07db002e65c97b23f7b5ba 100644
--- a/load.cc
+++ b/load.cc
@@ -208,6 +208,9 @@ DECL_FUNC_2(ConnectToNetwork, bool, const char*, const char*);
DECL_FUNC_3(SetNetworkServiceProperty, void, const char*, const char*,
const ::Value *);
DECL_FUNC_2(ClearNetworkServiceProperty, void, const char*, const char*);
+DECL_FUNC_3(SetNetworkDeviceProperty, void, const char*, const char*,
+ const ::Value *);
+DECL_FUNC_2(ClearNetworkDeviceProperty, void, const char*, const char*);
DECL_FUNC_4(ConnectToNetworkWithCertInfo, bool, const char*, const char*,
const char*, const char*);
DECL_FUNC_1(DisconnectFromNetwork, bool, const char*);
@@ -557,6 +560,8 @@ bool LoadLibcros(const char* path_to_libcros, std::string& error_string) {
INIT_FUNC(ConfigureWifiService);
INIT_FUNC(SetNetworkServiceProperty);
INIT_FUNC(ClearNetworkServiceProperty);
+ INIT_FUNC(SetNetworkDeviceProperty);
+ INIT_FUNC(ClearNetworkDeviceProperty);
INIT_FUNC(ConnectToNetwork);
INIT_FUNC(ConnectToNetworkWithCertInfo);
INIT_FUNC(DisconnectFromNetwork);
« no previous file with comments | « chromeos_network.cc ('k') | network_property_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698