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

Unified Diff: chrome/browser/ui/webui/chromeos/network_config_message_handler.h

Issue 492383002: Use ONC for Cellular APN and SimLock in Settings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix tests Created 6 years, 4 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/ui/webui/chromeos/network_config_message_handler.h
diff --git a/chrome/browser/ui/webui/chromeos/network_config_message_handler.h b/chrome/browser/ui/webui/chromeos/network_config_message_handler.h
index 09629192f37062283fbf76d87130b82f12846ed2..de229c2d7228dc33e95f68f9df62cbda10cf9f73 100644
--- a/chrome/browser/ui/webui/chromeos/network_config_message_handler.h
+++ b/chrome/browser/ui/webui/chromeos/network_config_message_handler.h
@@ -38,10 +38,16 @@ class NetworkConfigMessageHandler : public content::WebUIMessageHandler {
void GetNetworks(const base::ListValue* arg_list) const;
void GetProperties(const base::ListValue* arg_list);
void GetManagedProperties(const base::ListValue* arg_list);
- void GetShillProperties(const base::ListValue* arg_list);
void GetPropertiesSuccess(int callback_id,
const std::string& service_path,
const base::DictionaryValue& dictionary) const;
+
+ // Get Shill Properties for debugging purposes only.
+ void GetShillProperties(const base::ListValue* arg_list);
+ void GetShillPropertiesSuccess(int callback_id,
+ const std::string& service_path,
+ const base::DictionaryValue& dictionary) const;
+
void InvokeCallback(const base::ListValue& arg_list) const;
void ErrorCallback(int callback_id,
const std::string& error_name,

Powered by Google App Engine
This is Rietveld 408576698