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

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

Issue 2618693004: Mojo JS bindings: make sure that console.log() could be used in the bindings. (Closed)
Patch Set: . Created 3 years, 11 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/mojo_js_constants.cc ('k') | mojo/public/js/router.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/webui/resources/console.js
diff --git a/ios/web/webui/resources/console.js b/ios/web/webui/resources/console.js
new file mode 100644
index 0000000000000000000000000000000000000000..576800912f235c4ea59d4aea60c00b37f4e51c49
--- /dev/null
+++ b/ios/web/webui/resources/console.js
@@ -0,0 +1,29 @@
+// Copyright 2016 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 "console"
+//
+// This module provides basic logging support.
+
+define("console", [
+ "ios/mojo/public/js/sync_message_channel",
+], function(syncMessageChannel) {
+ /**
+ * Synchronously logs a message to mojo backend.
+ * @param {string} message to log.
+ */
+ function log(message) {
+ console.log(message);
+ /*syncMessageChannel.sendMessage({
+ name: "console.log",
+ args: {
+ message: message
+ }
+ });*/
+ }
+
+ var exports = {};
+ exports.log = log;
+ return exports;
+});
« no previous file with comments | « ios/web/webui/mojo_js_constants.cc ('k') | mojo/public/js/router.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698