cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / chromevox / host / interface / braille_interface.js
blob9ecba7216a7b4f262a5ac4ac38249c5366f9dc59
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 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');
18 /**
19 * @interface
21 cvox.BrailleInterface = function() { };
23 /**
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 =
29 function(params) { };