Index: chrome/browser/resources/chromeos/chromevox/host/interface/abstract_earcons.js |
diff --git a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_earcons.js b/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_earcons.js |
index 9a610cf6c8186a130bacc5b5180ef10ea48f1196..f4acb60b8efe3048f8e2bdf28019bccb70c64fb7 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_earcons.js |
+++ b/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_earcons.js |
@@ -74,8 +74,7 @@ cvox.EarconDescription = { |
/** |
* @constructor |
*/ |
-cvox.AbstractEarcons = function() { |
-}; |
+cvox.AbstractEarcons = function() {}; |
/** |
@@ -92,16 +91,14 @@ cvox.AbstractEarcons.enabled = true; |
* @param {Object=} opt_location A location associated with the earcon such as a |
* control's bounding rectangle. |
*/ |
-cvox.AbstractEarcons.prototype.playEarcon = function(earcon, opt_location) { |
-}; |
+cvox.AbstractEarcons.prototype.playEarcon = function(earcon, opt_location) {}; |
/** |
* Cancels the specified earcon sound. |
* @param {cvox.Earcon} earcon An earcon identifier. |
*/ |
-cvox.AbstractEarcons.prototype.cancelEarcon = function(earcon) { |
-}; |
+cvox.AbstractEarcons.prototype.cancelEarcon = function(earcon) {}; |
/** |