OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 /** | 5 /** |
6 * @fileoverview A class for walking one character at a time. | 6 * @fileoverview A class for walking one character at a time. |
7 */ | 7 */ |
8 | 8 |
9 | 9 |
10 goog.provide('cvox.CharacterWalker'); | 10 goog.provide('cvox.CharacterWalker'); |
(...skipping 22 matching lines...) Expand all Loading... |
33 } | 33 } |
34 item.personality['phoneticCharacters'] = true; | 34 item.personality['phoneticCharacters'] = true; |
35 }); | 35 }); |
36 return desc; | 36 return desc; |
37 }; | 37 }; |
38 | 38 |
39 /** | 39 /** |
40 * @override | 40 * @override |
41 */ | 41 */ |
42 cvox.CharacterWalker.prototype.getGranularityMsg = function() { | 42 cvox.CharacterWalker.prototype.getGranularityMsg = function() { |
43 return cvox.ChromeVox.msgs.getMsg('character_granularity'); | 43 return Msgs.getMsg('character_granularity'); |
44 }; | 44 }; |
OLD | NEW |