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 b1f96568adefb43fa50001d7eaf87e2d2f88473a..8c0c9d5038661c83cafecf629a86644f5abba24d 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js |
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js |
@@ -88,12 +88,6 @@ Background = function() { |
*/ |
this.currentRange_ = null; |
- /** |
- * @type {cursors.Range} |
- * @private |
- */ |
- this.savedRange_ = null; |
- |
// Manually bind all functions to |this|. |
for (var func in this) { |
if (typeof(this[func]) == 'function') |
@@ -156,9 +150,6 @@ Background = function() { |
/** @type {!LiveRegions} @private */ |
this.liveRegions_ = new LiveRegions(this); |
- /** @type {boolean} @private */ |
- this.inExcursion_ = false; |
- |
/** |
* Stores the mode as computed the last time a current range was set. |
* @type {?ChromeVoxMode} |
@@ -397,9 +388,6 @@ Background.prototype = { |
* @override |
*/ |
setCurrentRange: function(newRange) { |
- if (!this.inExcursion_ && newRange) |
- this.savedRange_ = new cursors.Range(newRange.start, newRange.end); |
- |
if (newRange && !newRange.isValid()) |
return; |