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

Unified Diff: mojo/apps/js/main.js

Issue 108723006: Gin: Fix console module to be varargs again. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ad Created 7 years 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 | « mojo/apps/js/bindings/connector.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/apps/js/main.js
diff --git a/mojo/apps/js/main.js b/mojo/apps/js/main.js
index 52bfc5b068fffc2840565b108091d73517a361ef..9d39e7cc38aa0187f450cc78fa3a9a2c91916718 100644
--- a/mojo/apps/js/main.js
+++ b/mojo/apps/js/main.js
@@ -180,10 +180,10 @@ define([
Object.create(nativeViewport.NativeViewportClientStub.prototype);
NativeViewportClientImpl.prototype.onCreated = function() {
- console.log(['NativeViewportClientImpl.prototype.OnCreated']);
+ console.log('NativeViewportClientImpl.prototype.OnCreated');
};
NativeViewportClientImpl.prototype.didOpen = function() {
- console.log(['NativeViewportClientImpl.prototype.DidOpen']);
+ console.log('NativeViewportClientImpl.prototype.DidOpen');
};
@@ -211,7 +211,7 @@ define([
};
GLES2ClientImpl.prototype.contextLost = function() {
- console.log(['GLES2ClientImpl.prototype.contextLost']);
+ console.log('GLES2ClientImpl.prototype.contextLost');
};
« no previous file with comments | « mojo/apps/js/bindings/connector.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698