Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js |
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js |
index 70a50675ccda9d2187f05b1a7033998d2ec2dd15..0f3bfa353e932fe808567ee3ae1f23ed213ead99 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js |
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js |
@@ -114,6 +114,15 @@ Background = function() { |
'Search+Shift' : 'Search'; |
}.bind(this) |
}); |
+ |
+ Object.defineProperty(cvox.ChromeVox, 'typingEcho', { |
+ get: function() { |
+ return parseInt(localStorage['typingEcho'], 10); |
+ }.bind(this), |
+ set: function(v) { |
+ localStorage['typingEcho'] = v; |
+ }.bind(this) |
+ }); |
} |
Object.defineProperty(cvox.ChromeVox, 'isActive', { |