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

Unified Diff: ios/web/webui/resources/timer.js

Issue 2744963002: Introduce InterfaceEndpointClient(IEC), InterfaceEndpointHandle and (Closed)
Patch Set: Throw the error with the string being the stack trace needed to debug layouts which don't output an… 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
« no previous file with comments | « ios/web/webui/resources/console.js ('k') | mojo/edk/js/tests/run_js_unittests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/webui/resources/timer.js
diff --git a/ios/web/webui/resources/timer.js b/ios/web/webui/resources/timer.js
new file mode 100644
index 0000000000000000000000000000000000000000..c9f44ebb2472c35175741a618900c4370d49b3e7
--- /dev/null
+++ b/ios/web/webui/resources/timer.js
@@ -0,0 +1,38 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Module "timer"
+//
+// This module provides basic createOneShot, createRepeating support. The
+// reason to define this module is to forward calls to setTimeout, setInterval
+// exposed by the browser. Mojo JS bindings are currently loaded using gin
+// and createOneShot, createRepeating are not always available.
+//
+// TODO(crbug.com/703380): When the Mojo JS bindings move away from gin,
+// this module could be removed.
+
+define("timer", [], function() {
+ /**
+ * Executes a function once after the set time delay.
+ * @param {int} delay Milliseconds to wait before executing the code.
+ * @callback callback
+ */
+ function createOneShot(delay, callback) {
+ setTimeout(callback, delay);
+ }
+
+ /**
+ * Repeatedly executes a function with a fixed time delay between each call.
+ * @param {int} delay Milliseconds to wait between executions of the code
+ * @callback callback
+ */
+ function createRepeating(delay, callback) {
+ setInterval(callback, delay);
+ }
+
+ var exports = {};
+ exports.createOneShot = createOneShot;
+ exports.createRepeating = createRepeating;
+ return exports;
+});
« no previous file with comments | « ios/web/webui/resources/console.js ('k') | mojo/edk/js/tests/run_js_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698