Index: remoting/webapp/js_proto/console_proto.js |
diff --git a/remoting/webapp/js_proto/console_proto.js b/remoting/webapp/js_proto/console_proto.js |
deleted file mode 100644 |
index ce4360b15695be7bb484ba8aacd695dd91561954..0000000000000000000000000000000000000000 |
--- a/remoting/webapp/js_proto/console_proto.js |
+++ /dev/null |
@@ -1,29 +0,0 @@ |
-// Copyright (c) 2012 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. |
- |
-/** |
- * @fileoverview Definitions for console logging. |
- * @externs |
- */ |
- |
-/** @type {Object} */ |
-var console = {}; |
- |
-/** |
- * @param {...*} var_args The message(s) to log. |
- * @return {void} Nothing. |
- */ |
-console.log = function(var_args) {}; |
- |
-/** |
- * @param {...*} var_args The message(s) to log. |
- * @return {void} Nothing. |
- */ |
-console.error = function(var_args) {}; |
- |
-/** |
- * @param {...*} var_args The message(s) to log. |
- * @return {void} Nothing. |
- */ |
-console.warn = function(var_args) {}; |