| Index: chrome/browser/resources/chromeos/chromevox/braille/spans.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/braille/spans.js b/chrome/browser/resources/chromeos/chromevox/braille/spans.js
|
| index 525b107e589b97de92251abcac8347790013fcc5..e9362bbfa60748b06906e053188ca53529d23746 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/braille/spans.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/braille/spans.js
|
| @@ -7,10 +7,12 @@
|
| * and selections.
|
| */
|
|
|
| +goog.provide('cvox.BrailleTextStyleSpan');
|
| goog.provide('cvox.ExtraCellsSpan');
|
| goog.provide('cvox.ValueSelectionSpan');
|
| goog.provide('cvox.ValueSpan');
|
|
|
| +goog.require('cvox.LibLouis.FormType');
|
| goog.require('Spannable');
|
|
|
| /**
|
| @@ -72,3 +74,14 @@ cvox.ExtraCellsSpan = function() {
|
| /** @type {ArrayBuffer} */
|
| this.cells = new Uint8Array(0).buffer;
|
| };
|
| +
|
| +
|
| +/**
|
| + * Indicates a text form during translation in Liblouis.
|
| + * @param {cvox.LibLouis.FormType} formType
|
| + * @constructor
|
| + */
|
| +cvox.BrailleTextStyleSpan = function(formType) {
|
| + /** @type {cvox.LibLouis.FormType} */
|
| + this.formType = formType;
|
| +};
|
|
|