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

Unified Diff: chrome/browser/resources/hotword/logging.js

Issue 658393003: Fix some straight-forward closure compiler errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove the @class annotation. Created 6 years, 2 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
Index: chrome/browser/resources/hotword/logging.js
diff --git a/chrome/browser/resources/hotword/logging.js b/chrome/browser/resources/hotword/logging.js
index 9ab9a1240ba2e64e990003ed7c7fd1d98d2c05d1..307234d0990125b7e7e6fff1ff5a7be00eb17220 100644
--- a/chrome/browser/resources/hotword/logging.js
+++ b/chrome/browser/resources/hotword/logging.js
@@ -8,8 +8,9 @@ cr.define('hotword', function() {
/**
* Wrapper around console.log allowing debug log message to be enabled during
* development.
+ * @param {...*} varArgs
*/
- function debug() {
+ function debug(varArgs) {
if (hotword.DEBUG || window.localStorage['hotword.DEBUG'])
console.log.apply(console, arguments);
}
« no previous file with comments | « chrome/browser/resources/hotword/launcher_manager.js ('k') | chrome/browser/resources/hotword/nacl_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698