| 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');
|
| };
|
|
|
|
|
|
|