Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / resources / chromeos / chromevox / chromevox / injected / loader.js
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
10 window.CLOSURE_USE_EXT_MESSAGES = true;
11
12 goog.require('cvox.ChromeEarcons');
13 goog.require('cvox.ChromeHost');
14 goog.require('cvox.ChromeMathJax');
15 goog.require('cvox.Msgs');
16 goog.require('cvox.ChromeTts');
17 goog.require('cvox.ChromeBraille');
18 goog.require('cvox.ChromeVoxInit');
19
20 if (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 }