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

Unified Diff: third_party/closure_compiler/externs/chrome_extensions.js

Issue 2786793002: Roll closure compiler (Closed)
Patch Set: Rerun with java 1.7 Created 3 years, 9 months 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: 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
*/
« no previous file with comments | « third_party/closure_compiler/compiler/compiler.jar ('k') | ui/webui/resources/js/cr/ui/context_menu_handler.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698