• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.
4
5
6/**
7 * @fileoverview Defines the ChromeVox app.
8 */
9
10window.CLOSURE_USE_EXT_MESSAGES = true;
11
12goog.require('cvox.ChromeEarcons');
13goog.require('cvox.ChromeHost');
14goog.require('cvox.ChromeMathJax');
15goog.require('cvox.ChromeMsgs');
16goog.require('cvox.ChromeTts');
17goog.require('cvox.ChromeBraille');
18goog.require('cvox.ChromeVoxInit');
19
20if (COMPILED) {
21  // NOTE(deboer): This is called when this script is loaded, automatically
22  // starting ChromeVox. If this isn't the compiled script, it will be
23  // called in init_document.js.
24  cvox.ChromeVox.initDocument();
25}
26