| Index: third_party/closure_compiler/externs/chrome_extensions.js
|
| diff --git a/third_party/closure_compiler/externs/chrome_extensions.js b/third_party/closure_compiler/externs/chrome_extensions.js
|
| index 7088c14d36b2d520f336056ae49e014a611a5f92..aaea0200ec0434159651f5a1d86c25bddfd1711e 100644
|
| --- a/third_party/closure_compiler/externs/chrome_extensions.js
|
| +++ b/third_party/closure_compiler/externs/chrome_extensions.js
|
| @@ -2401,6 +2401,16 @@ chrome.runtime.requestUpdateCheck = function(callback) {};
|
| chrome.runtime.restart = function() {};
|
|
|
|
|
| +/**
|
| + * @see https://developer.chrome.com/extensions/runtime#method-restartAfterDelay
|
| + * @param {number} seconds Time to wait in seconds before rebooting the device,
|
| + * or -1 to cancel a scheduled reboot.
|
| + * @param {function():void=} opt_callback A callback to be invoked when a
|
| + * restart request was successfully rescheduled.
|
| + * @return {undefined}
|
| + */
|
| +chrome.runtime.restartAfterDelay = function(seconds, opt_callback) {};
|
| +
|
|
|
| /**
|
| * @see http://developer.chrome.com/extensions/runtime.html#method-connectNative
|
| @@ -4517,6 +4527,13 @@ chrome.identity.onSignInChanged;
|
|
|
|
|
| /**
|
| + * @param {string=} opt_path
|
| + * @return {string}
|
| + */
|
| +chrome.identity.getRedirectURL = function(opt_path) {};
|
| +
|
| +
|
| +/**
|
| * @const
|
| * @see https://developer.chrome.com/extensions/input.ime.html
|
| */
|
|
|