summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/chromevox/walkers/word_walker.js
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/resources/chromeos/chromevox/walkers/word_walker.js')
-rw-r--r--chromium/chrome/browser/resources/chromeos/chromevox/walkers/word_walker.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/chromium/chrome/browser/resources/chromeos/chromevox/walkers/word_walker.js b/chromium/chrome/browser/resources/chromeos/chromevox/walkers/word_walker.js
deleted file mode 100644
index 6256387fd5d..00000000000
--- a/chromium/chrome/browser/resources/chromeos/chromevox/walkers/word_walker.js
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-/**
- * @fileoverview A class for walking one word at a time.
- */
-
-
-goog.provide('cvox.WordWalker');
-
-goog.require('cvox.AbstractSelectionWalker');
-goog.require('cvox.TraverseContent');
-
-/**
- * @constructor
- * @extends {cvox.AbstractSelectionWalker}
- */
-cvox.WordWalker = function() {
- cvox.AbstractSelectionWalker.call(this);
- this.grain = cvox.TraverseContent.kWord;
-};
-goog.inherits(cvox.WordWalker, cvox.AbstractSelectionWalker);
-
-/**
- * @override
- */
-cvox.WordWalker.prototype.getGranularityMsg = function() {
- return Msgs.getMsg('word_granularity');
-};