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.
6 * @fileoverview Defines a Braille interface.
8 * All Braille engines in ChromeVox conform to this interface.
12 goog.provide('cvox.BrailleInterface');
14 goog.require('cvox.BrailleKeyCommand');
15 goog.require('cvox.BrailleKeyEvent');
16 goog.require('cvox.NavBraille');
21 cvox.BrailleInterface = function() { };
24 * Sends the given params to the Braille display for output.
25 * @param {!cvox.NavBraille} params Parameters to send to the
26 * platform braille service.
28 cvox.BrailleInterface.prototype.write =