Index: chrome/browser/resources/chromeos/chromevox/common/key_util.js |
diff --git a/chrome/browser/resources/chromeos/chromevox/common/key_util.js b/chrome/browser/resources/chromeos/chromevox/common/key_util.js |
index ce827c691baca0aaee4a3fd133982c39ddffea9f..9bbf893c5ef7c12bc2d5374f7d5fd76b4cd34901 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/common/key_util.js |
+++ b/chrome/browser/resources/chromeos/chromevox/common/key_util.js |
@@ -342,23 +342,6 @@ cvox.KeyUtil.getStickyKeyCode = function() { |
return stickyKeyCode; |
}; |
-/** |
- * Get the platform specific sticky key KeySequence. Creates the KeySequence |
- * object if it doesn't already exist. |
- * |
- * @return {cvox.KeySequence} The platform specific sticky key KeySequence. |
- */ |
-cvox.KeyUtil.getStickyKeySequence = function() { |
- if (cvox.KeyUtil.stickyKeySequence == null) { |
- var stickyKeyCode = cvox.KeyUtil.getStickyKeyCode(); |
- var stickyKeyObj = {keyCode: stickyKeyCode, stickyMode: true}; |
- var stickyKeySequence = new cvox.KeySequence(stickyKeyObj); |
- stickyKeySequence.addKeyEvent(stickyKeyObj); |
- cvox.KeyUtil.stickyKeySequence = stickyKeySequence; |
- } |
- return cvox.KeyUtil.stickyKeySequence; |
-}; |
- |
/** |
* Get readable string description for an internal string representation of a |