| Index: third_party/closure_compiler/externs/networking_private.js
|
| diff --git a/third_party/closure_compiler/externs/networking_private.js b/third_party/closure_compiler/externs/networking_private.js
|
| index ecdd9150bbcc5ee00f755b416ea2650f74200f46..e911ff8ef4ec7c84d69ea1671a2adeebfa2e0e84 100644
|
| --- a/third_party/closure_compiler/externs/networking_private.js
|
| +++ b/third_party/closure_compiler/externs/networking_private.js
|
| @@ -299,9 +299,10 @@ chrome.networkingPrivate.ManagedCertificatePattern;
|
| * ClientCertType: (string|undefined),
|
| * Identity: (string|undefined),
|
| * Inner: (string|undefined),
|
| - * Outer: string,
|
| + * Outer: (string|undefined),
|
| * Password: (string|undefined),
|
| * SaveCredentials: (boolean|undefined),
|
| + * ServerCAPEMs: (!Array<string>|undefined),
|
| * ServerCARefs: (!Array<string>|undefined),
|
| * UseProactiveKeyCaching: (boolean|undefined),
|
| * UseSystemCAs: (boolean|undefined)
|
| @@ -318,9 +319,10 @@ chrome.networkingPrivate.EAPProperties;
|
| * ClientCertType: (!chrome.networkingPrivate.ManagedDOMString|undefined),
|
| * Identity: (!chrome.networkingPrivate.ManagedDOMString|undefined),
|
| * Inner: (!chrome.networkingPrivate.ManagedDOMString|undefined),
|
| - * Outer: !chrome.networkingPrivate.ManagedDOMString,
|
| + * Outer: (!chrome.networkingPrivate.ManagedDOMString|undefined),
|
| * Password: (!chrome.networkingPrivate.ManagedDOMString|undefined),
|
| * SaveCredentials: (!chrome.networkingPrivate.ManagedBoolean|undefined),
|
| + * ServerCAPEMs: (!chrome.networkingPrivate.ManagedDOMStringList|undefined),
|
| * ServerCARefs: (!chrome.networkingPrivate.ManagedDOMStringList|undefined),
|
| * UseProactiveKeyCaching: (!chrome.networkingPrivate.ManagedBoolean|undefined),
|
| * UseSystemCAs: (!chrome.networkingPrivate.ManagedBoolean|undefined)
|
| @@ -1224,6 +1226,7 @@ chrome.networkingPrivate.startActivate = function(networkGuid, carrier, callback
|
| * trusted device.
|
| * @param {function(boolean):void} callback A callback function that indicates
|
| * whether or not the device is a trusted device.
|
| + * @deprecated Use networking.castPrivate API.
|
| * @see https://developer.chrome.com/extensions/networkingPrivate#method-verifyDestination
|
| */
|
| chrome.networkingPrivate.verifyDestination = function(properties, callback) {};
|
| @@ -1237,6 +1240,7 @@ chrome.networkingPrivate.verifyDestination = function(properties, callback) {};
|
| * @param {string} networkGuid The GUID of the Cellular network to activate.
|
| * @param {function(string):void} callback A callback function that receives
|
| * base64-encoded encrypted credential data to send to a trusted device.
|
| + * @deprecated Use networking.castPrivate API.
|
| * @see https://developer.chrome.com/extensions/networkingPrivate#method-verifyAndEncryptCredentials
|
| */
|
| chrome.networkingPrivate.verifyAndEncryptCredentials = function(properties, networkGuid, callback) {};
|
| @@ -1250,6 +1254,7 @@ chrome.networkingPrivate.verifyAndEncryptCredentials = function(properties, netw
|
| * @param {string} data A string containing the base64-encoded data to encrypt.
|
| * @param {function(string):void} callback A callback function that receives
|
| * base64-encoded encrypted data to send to a trusted device.
|
| + * @deprecated Use networking.castPrivate API.
|
| * @see https://developer.chrome.com/extensions/networkingPrivate#method-verifyAndEncryptData
|
| */
|
| chrome.networkingPrivate.verifyAndEncryptData = function(properties, data, callback) {};
|
| @@ -1265,6 +1270,7 @@ chrome.networkingPrivate.verifyAndEncryptData = function(properties, data, callb
|
| * that the request failed (e.g. MAC address lookup failed). 'Timeout'
|
| * indicates that the lookup timed out. Otherwise a valid status is
|
| * returned (see $(ref:getWifiTDLSStatus)).
|
| + * @deprecated Use networking.castPrivate API.
|
| * @see https://developer.chrome.com/extensions/networkingPrivate#method-setWifiTDLSEnabledState
|
| */
|
| chrome.networkingPrivate.setWifiTDLSEnabledState = function(ip_or_mac_address, enabled, callback) {};
|
| @@ -1275,6 +1281,7 @@ chrome.networkingPrivate.setWifiTDLSEnabledState = function(ip_or_mac_address, e
|
| * @param {function(string):void} callback A callback function that receives a
|
| * string with the current TDLS status which can be 'Connected',
|
| * 'Disabled', 'Disconnected', 'Nonexistent', or 'Unknown'.
|
| + * @deprecated Use networking.castPrivate API.
|
| * @see https://developer.chrome.com/extensions/networkingPrivate#method-getWifiTDLSStatus
|
| */
|
| chrome.networkingPrivate.getWifiTDLSStatus = function(ip_or_mac_address, callback) {};
|
|
|