[sql] Remove _HAS_EXCEPTIONS=0 from build info.
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / chromevox / walkers / row_walker.js
blob4884cd8910e44675327c667bff778b72def16c79
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.
5 /**
6  * @fileoverview A class for walking rows.
7  */
10 goog.provide('cvox.RowWalker');
12 goog.require('cvox.TableWalker');
15 /**
16  * @constructor
17  * @extends {cvox.TableWalker}
18  */
19 cvox.RowWalker = function() {
20   goog.base(this);
22 goog.inherits(cvox.RowWalker, cvox.TableWalker);
25 /**
26  * @override
27  */
28 cvox.RowWalker.prototype.next = function(sel) {
29   return this.nextRow(sel);
33 /**
34  * @override
35  */
36 cvox.RowWalker.prototype.getGranularityMsg = function() {
37   return cvox.ChromeVox.msgs.getMsg('row_granularity');