Codebase list mozc / fca001c
Trivial renaming. BUG=none TEST=unittest REF_BUG=19010851 REF_CL=84595796 Noriyuki Takahashi authored 8 years ago Yohei Yukawa committed 8 years ago
2 changed file(s) with 4 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
817817
818818 namespace {
819819 SystemDictionaryCodecInterface *g_system_dictionary_codec = NULL;
820 typedef SystemDictionaryCodec DefaultCodec;
820 typedef SystemDictionaryCodec DefaultSystemDictionaryCodec;
821821 } // namespace
822822
823823 SystemDictionaryCodecInterface *SystemDictionaryCodecFactory::GetCodec() {
824824 if (g_system_dictionary_codec == NULL) {
825 return Singleton<DefaultCodec>::get();
825 return Singleton<DefaultSystemDictionaryCodec>::get();
826826 } else {
827827 return g_system_dictionary_codec;
828828 }
832832 SystemDictionaryCodecInterface *codec) {
833833 g_system_dictionary_codec = codec;
834834 }
835
835836 } // namespace dictionary
836837 } // namespace mozc
00 MAJOR=2
11 MINOR=17
2 BUILD=2112
2 BUILD=2113
33 REVISION=102
44 # NACL_DICTIONARY_VERSION is the target version of the system dictionary to be
55 # downloaded by NaCl Mozc.