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

Side by Side Diff: remoting/webapp/js_proto/console_proto.js

Issue 803653004: Update Chromoting to use /third_party/closure_compiler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge; Update closure annotations for new Js code Created 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6 * @fileoverview Definitions for console logging.
7 * @externs
8 */
9
10 /** @type {Object} */
11 var console = {};
12
13 /**
14 * @param {...*} var_args The message(s) to log.
15 * @return {void} Nothing.
16 */
17 console.log = function(var_args) {};
18
19 /**
20 * @param {...*} var_args The message(s) to log.
21 * @return {void} Nothing.
22 */
23 console.error = function(var_args) {};
24
25 /**
26 * @param {...*} var_args The message(s) to log.
27 * @return {void} Nothing.
28 */
29 console.warn = function(var_args) {};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698