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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/key_util.js

Issue 541493002: Remove unused function, it doesn't look like it was called from anywhere. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698