Index: chromeos_network.h |
diff --git a/chromeos_network.h b/chromeos_network.h |
index 7d405f4c90f5bda5d552230f967306a164d1c277..8b68d212bf78c0106671475e59fca23ebce1dcbc 100644 |
--- a/chromeos_network.h |
+++ b/chromeos_network.h |
@@ -135,6 +135,17 @@ extern void (*SetNetworkServiceProperty)(const char* service_path, |
extern void (*ClearNetworkServiceProperty)(const char* service_path, |
const char* property); |
+// Set a property of a device to the provided value |
+// |
+// Success is indicated by the receipt of a matching PropertyChanged signal. |
+extern void (*SetNetworkDeviceProperty)(const char* device_path, |
+ const char* property, |
+ const ::Value* setting); |
+ |
+// Clear a property of a device |
+extern void (*ClearNetworkDeviceProperty)(const char* device_path, |
+ const char* property); |
+ |
// Connects to the network with the |service_path|. |
// |
// Set |passphrase| to NULL if the network doesn't require authentication. |