OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 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. |
| 4 |
| 5 /** |
| 6 * @fileoverview Defines a global object. The initialization of this |
| 7 * object happens in init.js. |
| 8 */ |
| 9 |
| 10 goog.provide('cvox.ChromeVox'); |
| 11 |
| 12 /** |
| 13 * @constructor |
| 14 */ |
| 15 cvox.ChromeVox = {}; |
| 16 |
| 17 /** |
| 18 * @type {Object} |
| 19 */ |
| 20 cvox.ChromeVox.tts = null; |
| 21 /** |
| 22 * @type {Object} |
| 23 */ |
| 24 cvox.ChromeVox.lens = null; |
| 25 /** |
| 26 * @type {boolean} |
| 27 */ |
| 28 cvox.ChromeVox.isActive = true; |
| 29 /** |
| 30 * @type {Object} |
| 31 */ |
| 32 cvox.ChromeVox.traverseContent = null; |
| 33 /** |
| 34 * @type {Object} |
| 35 */ |
| 36 cvox.ChromeVox.selectionUtil = null; |
| 37 /** |
| 38 * @type {Object} |
| 39 */ |
| 40 cvox.ChromeVox.earcons = null; |
| 41 /** |
| 42 * @type {Object} |
| 43 */ |
| 44 cvox.ChromeVox.navigationManager = null; |
OLD | NEW |