Index: chrome/browser/chromeos/options/network_connect.h |
diff --git a/chrome/browser/chromeos/options/network_connect.h b/chrome/browser/chromeos/options/network_connect.h |
index a95fa14c7beab7b3da9b95d7a7f13bf1009cf86c..7a18bf5268d80312e02a6612dd060a76ed5ab9bb 100644 |
--- a/chrome/browser/chromeos/options/network_connect.h |
+++ b/chrome/browser/chromeos/options/network_connect.h |
@@ -18,6 +18,15 @@ enum ConnectResult { |
CONNECT_STARTED |
}; |
+// Activate the cellular network associated with |service_path| if direct |
+// activation is supported, otherwise call ShowMobileSetup. |
+void ActivateCellular(const std::string& service_path); |
+ |
+// Shows the mobile setup dialog which handles: |
+// * Activation for non dircect-activation networks |
tbarzic
2013/05/24 21:24:34
nit: dot at the sentence end.
s/dircect/direct
stevenjb
2013/05/24 22:17:45
Not sentences (phrases). Fixed typo.
tbarzic
2013/05/24 22:40:03
oh, yeah.. sorry :)
|
+// * Showing network plan info |
+void ShowMobileSetup(const std::string& service_path); |
+ |
// Attempts to connect to the network specified by |service_path|. |
// Returns one of the following results: |
// NETWORK_NOT_FOUND if the network does not exist. |