cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / chromevox / walkers / column_walker.js
blob673bfca38cee3206d41eb96e6852957dc7ab135a
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 columns.
7 */
10 goog.provide('cvox.ColumnWalker');
12 goog.require('cvox.TableWalker');
15 /**
16 * @constructor
17 * @extends {cvox.TableWalker}
19 cvox.ColumnWalker = function() {
20 goog.base(this);
22 goog.inherits(cvox.ColumnWalker, cvox.TableWalker);
25 /**
26 * @override
28 cvox.ColumnWalker.prototype.next = function(sel) {
29 return this.nextCol(sel);
33 /**
34 * @override
36 cvox.ColumnWalker.prototype.getGranularityMsg = function() {
37 return cvox.ChromeVox.msgs.getMsg('column_granularity');