| OLD | NEW |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 cr.define('hotword.constants', function() { | 5 cr.define('hotword.constants', function() { |
| 6 'use strict'; | 6 'use strict'; |
| 7 | 7 |
| 8 /** | 8 /** |
| 9 * Hotword data shared module extension's ID. | 9 * Hotword data shared module extension's ID. |
| 10 * @const {string} | 10 * @const {string} |
| 11 * TODO(amistry): Replace with real shared module ID. | |
| 12 */ | 11 */ |
| 13 var SHARED_MODULE_ID = 'bepbmhgboaologfdajaanbcjmnhjmhfn'; | 12 var SHARED_MODULE_ID = 'lccekmodgklaepjeofjdjpbminllajkg'; |
| 14 | 13 |
| 15 /** | 14 /** |
| 16 * Path to shared module data. | 15 * Path to shared module data. |
| 17 * @const {string} | 16 * @const {string} |
| 18 */ | 17 */ |
| 19 var SHARED_MODULE_ROOT = '_modules/' + SHARED_MODULE_ID; | 18 var SHARED_MODULE_ROOT = '_modules/' + SHARED_MODULE_ID; |
| 20 | 19 |
| 21 /** | 20 /** |
| 22 * Time to wait for expected messages, in milliseconds. | 21 * Time to wait for expected messages, in milliseconds. |
| 23 * @enum {number} | 22 * @enum {number} |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 TimeoutMs: TimeoutMs, | 93 TimeoutMs: TimeoutMs, |
| 95 File: File, | 94 File: File, |
| 96 Error: Error, | 95 Error: Error, |
| 97 Event: Event, | 96 Event: Event, |
| 98 NaClPlugin: NaClPlugin, | 97 NaClPlugin: NaClPlugin, |
| 99 SessionSource: SessionSource, | 98 SessionSource: SessionSource, |
| 100 UI_LANGUAGE: UI_LANGUAGE | 99 UI_LANGUAGE: UI_LANGUAGE |
| 101 }; | 100 }; |
| 102 | 101 |
| 103 }); | 102 }); |
| OLD | NEW |