1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 * @fileoverview A class for walking rows.
10 goog.provide('cvox.RowWalker');
12 goog.require('cvox.TableWalker');
17 * @extends {cvox.TableWalker}
19 cvox.RowWalker = function() {
22 goog.inherits(cvox.RowWalker, cvox.TableWalker);
28 cvox.RowWalker.prototype.next = function(sel) {
29 return this.nextRow(sel);
36 cvox.RowWalker.prototype.getGranularityMsg = function() {
37 return cvox.ChromeVox.msgs.getMsg('row_granularity');