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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js

Issue 1273363004: Initial commit of new ChromeVox earcon engine. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback from Peter Created 5 years, 3 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/resources/chromeos/chromevox/cvox2/background/earcons/static.wav ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview Provides output services for ChromeVox. 6 * @fileoverview Provides output services for ChromeVox.
7 */ 7 */
8 8
9 goog.provide('Output'); 9 goog.provide('Output');
10 goog.provide('Output.EventType'); 10 goog.provide('Output.EventType');
11 11
12 goog.require('AutomationUtil.Dir'); 12 goog.require('AutomationUtil.Dir');
13 goog.require('EarconEngine');
13 goog.require('cursors.Cursor'); 14 goog.require('cursors.Cursor');
14 goog.require('cursors.Range'); 15 goog.require('cursors.Range');
15 goog.require('cursors.Unit'); 16 goog.require('cursors.Unit');
16 goog.require('cvox.AbstractEarcons'); 17 goog.require('cvox.AbstractEarcons');
17 goog.require('cvox.NavBraille'); 18 goog.require('cvox.NavBraille');
18 goog.require('cvox.Spannable'); 19 goog.require('cvox.Spannable');
19 goog.require('cvox.ValueSelectionSpan'); 20 goog.require('cvox.ValueSelectionSpan');
20 goog.require('cvox.ValueSpan'); 21 goog.require('cvox.ValueSpan');
21 goog.require('goog.i18n.MessageFormat'); 22 goog.require('goog.i18n.MessageFormat');
22 23
(...skipping 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after
1291 elem.end); 1292 elem.end);
1292 }); 1293 });
1293 spansToRemove.forEach(result.removeSpan.bind(result)); 1294 spansToRemove.forEach(result.removeSpan.bind(result));
1294 separator = Output.SPACE; 1295 separator = Output.SPACE;
1295 }); 1296 });
1296 return result; 1297 return result;
1297 } 1298 }
1298 }; 1299 };
1299 1300
1300 }); // goog.scope 1301 }); // goog.scope
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/chromevox/cvox2/background/earcons/static.wav ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698