| Index: extensions/browser/api/networking_private/networking_private_delegate.h
|
| diff --git a/extensions/browser/api/networking_private/networking_private_delegate.h b/extensions/browser/api/networking_private/networking_private_delegate.h
|
| index 78ebc32eaf77cbfa3b90d5f537050092584ea948..1e048b1dc87e315b74866a79b47143ad5eb0af39 100644
|
| --- a/extensions/browser/api/networking_private/networking_private_delegate.h
|
| +++ b/extensions/browser/api/networking_private/networking_private_delegate.h
|
| @@ -164,7 +164,6 @@ class NetworkingPrivateDelegate : public KeyedService {
|
| const std::string& puk,
|
| const VoidCallback& success_callback,
|
| const FailureCallback& failure_callback) = 0;
|
| -
|
| virtual void SetCellularSimState(const std::string& guid,
|
| bool require_pin,
|
| const std::string& current_pin,
|
| @@ -180,6 +179,12 @@ class NetworkingPrivateDelegate : public KeyedService {
|
| // Returns a list of DeviceStateProperties.
|
| virtual std::unique_ptr<DeviceStateList> GetDeviceStateList() = 0;
|
|
|
| + // Returns a dictionary of global policy values (may be empty). Note: the
|
| + // dictionary is expected to be a superset of the networkingPrivate
|
| + // GlobalPolicy dictionary. Any properties not in GlobalPolicy will be
|
| + // ignored.
|
| + virtual std::unique_ptr<base::DictionaryValue> GetGlobalPolicy() = 0;
|
| +
|
| // Returns true if the ONC network type |type| is enabled.
|
| virtual bool EnableNetworkType(const std::string& type) = 0;
|
|
|
|
|