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

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

Issue 2744963002: Introduce InterfaceEndpointClient(IEC), InterfaceEndpointHandle and (Closed)
Patch Set: Add binding.html layout test for connection error with reason. Reset IEC when reset() or close()… 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: 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..8896423c5e6cc8ebdcb64c2e2ac6010e8aeddd56
--- /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 is not always available.
yzshen1 2017/03/24 21:20:12 is -> are?
wangjimmy 2017/03/27 16:51:27 Done.
+//
+// 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;
+});

Powered by Google App Engine
This is Rietveld 408576698