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

Unified Diff: chrome/browser/resources/chromeos/chromevox/walkers/table_walker.js

Issue 1100763002: Inject CanAddURLToHistory into TopSitesImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prefs
Patch Set: Fix error introduced during rebase Created 5 years, 8 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
Index: chrome/browser/resources/chromeos/chromevox/walkers/table_walker.js
diff --git a/chrome/browser/resources/chromeos/chromevox/walkers/table_walker.js b/chrome/browser/resources/chromeos/chromevox/walkers/table_walker.js
index 881902ed35e7930308dc97dc3d20d13baa7be428..cd6f3c885d78d7026b0533abb7282634b5762d19 100644
--- a/chrome/browser/resources/chromeos/chromevox/walkers/table_walker.js
+++ b/chrome/browser/resources/chromeos/chromevox/walkers/table_walker.js
@@ -102,7 +102,7 @@ cvox.TableWalker.prototype.getGranularityMsg = goog.abstractMethod;
* Returns the first cell of the table that this selection is inside.
* @param {!cvox.CursorSelection} sel The selection.
* @return {cvox.CursorSelection} The selection for first cell of the table.
- * @expose
+ * @export
*/
cvox.TableWalker.prototype.goToFirstCell = function(sel) {
return this.goTo_(sel, goog.bind(function(position) {
@@ -114,7 +114,7 @@ cvox.TableWalker.prototype.goToFirstCell = function(sel) {
* Returns the last cell of the table that this selection is inside.
* @param {!cvox.CursorSelection} sel The selection.
* @return {cvox.CursorSelection} The selection for the last cell of the table.
- * @expose
+ * @export
*/
cvox.TableWalker.prototype.goToLastCell = function(sel) {
return this.goTo_(sel, goog.bind(function(position) {
@@ -126,7 +126,7 @@ cvox.TableWalker.prototype.goToLastCell = function(sel) {
* Returns the first cell of the row that the selection is in.
* @param {!cvox.CursorSelection} sel The selection.
* @return {cvox.CursorSelection} The selection for the first cell in the row.
- * @expose
+ * @export
*/
cvox.TableWalker.prototype.goToRowFirstCell = function(sel) {
return this.goTo_(sel, goog.bind(function(position) {
@@ -138,7 +138,7 @@ cvox.TableWalker.prototype.goToRowFirstCell = function(sel) {
* Returns the last cell of the row that the selection is in.
* @param {!cvox.CursorSelection} sel The selection.
* @return {cvox.CursorSelection} The selection for the last cell in the row.
- * @expose
+ * @export
*/
cvox.TableWalker.prototype.goToRowLastCell = function(sel) {
return this.goTo_(sel, goog.bind(function(position) {
@@ -150,7 +150,7 @@ cvox.TableWalker.prototype.goToRowLastCell = function(sel) {
* Returns the first cell of the column that the selection is in.
* @param {!cvox.CursorSelection} sel The selection.
* @return {cvox.CursorSelection} The selection for the first cell in the col.
- * @expose
+ * @export
*/
cvox.TableWalker.prototype.goToColFirstCell = function(sel) {
return this.goTo_(sel, goog.bind(function(position) {
@@ -162,7 +162,7 @@ cvox.TableWalker.prototype.goToColFirstCell = function(sel) {
* Returns the last cell of the column that the selection is in.
* @param {!cvox.CursorSelection} sel The selection.
* @return {cvox.CursorSelection} The selection for the last cell in the col.
- * @expose
+ * @export
*/
cvox.TableWalker.prototype.goToColLastCell = function(sel) {
return this.goTo_(sel, goog.bind(function(position) {
@@ -175,7 +175,7 @@ cvox.TableWalker.prototype.goToColLastCell = function(sel) {
* @param {!cvox.CursorSelection} sel The selection.
* @return {cvox.CursorSelection} The selection for the first cell in the next
* row.
- * @expose
+ * @export
*/
cvox.TableWalker.prototype.nextRow = function(sel) {
return this.goTo_(sel, goog.bind(function(position) {
@@ -189,7 +189,7 @@ cvox.TableWalker.prototype.nextRow = function(sel) {
* @param {!cvox.CursorSelection} sel The selection.
* @return {cvox.CursorSelection} The selection for the first cell in the
* next col.
- * @expose
+ * @export
*/
cvox.TableWalker.prototype.nextCol = function(sel) {
return this.goTo_(sel, goog.bind(function(position) {
@@ -201,7 +201,7 @@ cvox.TableWalker.prototype.nextCol = function(sel) {
/**
* @param {!cvox.CursorSelection} sel The current selection.
* @return {cvox.CursorSelection} The resulting selection.
- * @expose
+ * @export
*/
cvox.TableWalker.prototype.announceHeaders = function(sel) {
cvox.ChromeVox.tts.speak(this.getHeaderText_(sel),
@@ -213,7 +213,7 @@ cvox.TableWalker.prototype.announceHeaders = function(sel) {
/**
* @param {!cvox.CursorSelection} sel The current selection.
* @return {cvox.CursorSelection} The resulting selection.
- * @expose
+ * @export
*/
cvox.TableWalker.prototype.speakTableLocation = function(sel) {
cvox.ChromeVox.navigationManager.speakDescriptionArray(
@@ -227,7 +227,7 @@ cvox.TableWalker.prototype.speakTableLocation = function(sel) {
/**
* @param {!cvox.CursorSelection} sel The current selection.
* @return {cvox.CursorSelection} The resulting selection.
- * @expose
+ * @export
*/
cvox.TableWalker.prototype.exitShifterContent = function(sel) {
var tableNode = this.getTableNode_(sel);

Powered by Google App Engine
This is Rietveld 408576698