Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / resources / chromeos / network / network_config.js
index 06563f5..29ac7a7 100644 (file)
@@ -131,5 +131,17 @@ var networkConfig = {
   getNetworks: function(filter, callback) {
     var callbackId = this.storeCallback_(callback);
     chrome.send('networkConfig.getNetworks', [callbackId, filter]);
-  }
+  },
+
+  /**
+   * Debugging method to get raw Shill properties
+   *
+   * @param {string} guid The guid identifying the network.
+   * @param {function()} callback The callback to call on completion.
+   */
+  getShillProperties: function(guid, callback) {
+    var callbackId = this.storeCallback_(callback);
+    chrome.send('networkConfig.getShillProperties', [callbackId, guid]);
+  },
+
 };