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

Unified Diff: extensions/browser/api/networking_private/networking_private_chromeos.h

Issue 2471723002: chromeos: networkingPrivate: Set active proxy values (Closed)
Patch Set: Separate out UI changes Created 4 years, 1 month 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: extensions/browser/api/networking_private/networking_private_chromeos.h
diff --git a/extensions/browser/api/networking_private/networking_private_chromeos.h b/extensions/browser/api/networking_private/networking_private_chromeos.h
index 9cf77ba755c8d261730f617de229c5770d4774e4..724a5ad9e7a58f3eaf920b30295b39a05f3d1fcf 100644
--- a/extensions/browser/api/networking_private/networking_private_chromeos.h
+++ b/extensions/browser/api/networking_private/networking_private_chromeos.h
@@ -100,7 +100,9 @@ class NetworkingPrivateChromeOS : public NetworkingPrivateDelegate {
// Callback for both GetProperties and GetManagedProperties. Copies
// |dictionary| and appends any networkingPrivate API specific properties,
// then calls |callback| with the result.
- void GetPropertiesCallback(const DictionaryCallback& callback,
+ void GetPropertiesCallback(const std::string& guid,
+ bool managed,
+ const DictionaryCallback& callback,
const std::string& service_path,
const base::DictionaryValue& dictionary);
@@ -109,6 +111,10 @@ class NetworkingPrivateChromeOS : public NetworkingPrivateDelegate {
// which is not available to the chromeos/network module.
void AppendThirdPartyProviderName(base::DictionaryValue* dictionary);
+ // Set the active proxy values for connected networks.
michaelpg 2016/11/02 23:55:25 nit: "Sets"
stevenjb 2016/11/03 17:48:56 Done.
+ void SetActiveProxyValues(const std::string& guid,
+ base::DictionaryValue* dictionary);
+
// Handles connection failures, possibly showing UI for configuration
// failures, then calls the appropriate callback.
void ConnectFailureCallback(

Powered by Google App Engine
This is Rietveld 408576698