| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/browser/chromeos/input_method/input_method_util.h" | 5 #include "chrome/browser/chromeos/input_method/input_method_util.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <functional> | 8 #include <functional> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 { "_comp_ime_cpgalbafkoofkjmaeonnfijgpfennjjnzh-t-i0-pinyin", | 52 { "_comp_ime_cpgalbafkoofkjmaeonnfijgpfennjjnzh-t-i0-pinyin", |
| 53 "\xe6\x8b\xbc" }, | 53 "\xe6\x8b\xbc" }, |
| 54 { "_comp_ime_nmblnjkfdkabgdofidlkienfnnbjhnabzh-t-i0-pinyin", | 54 { "_comp_ime_nmblnjkfdkabgdofidlkienfnnbjhnabzh-t-i0-pinyin", |
| 55 "\xe6\x8b\xbc" }, | 55 "\xe6\x8b\xbc" }, |
| 56 { "_comp_ime_gjhclobljhjhgoebiipblnmdodbmpdgdzh-t-i0-wubi-1986", | 56 { "_comp_ime_gjhclobljhjhgoebiipblnmdodbmpdgdzh-t-i0-wubi-1986", |
| 57 "\xe4\xba\x94" }, // U+4E94 | 57 "\xe4\xba\x94" }, // U+4E94 |
| 58 { "pinyin-dv", "\xe6\x8b\xbc" }, | 58 { "pinyin-dv", "\xe6\x8b\xbc" }, |
| 59 // For traditional Chinese input methods | 59 // For traditional Chinese input methods |
| 60 { "mozc-chewing", "\xe9\x85\xb7" }, // U+9177 | 60 { "mozc-chewing", "\xe9\x85\xb7" }, // U+9177 |
| 61 { "_comp_ime_ekbifjdfhkmdeeajnolmgdlmkllopefizh-hant-t-i0-und", | 61 { "_comp_ime_ekbifjdfhkmdeeajnolmgdlmkllopefizh-hant-t-i0-und", |
| 62 "\xe9\x85\xb7" }, // U+9177 | 62 "\xE6\xB3\xA8" }, // U+6CE8 |
| 63 { "_comp_ime_goedamlknlnjaengojinmfgpmdjmkooozh-hant-t-i0-und", | 63 { "_comp_ime_goedamlknlnjaengojinmfgpmdjmkooozh-hant-t-i0-und", |
| 64 "\xe9\x85\xb7" }, // U+9177 | 64 "\xE6\xB3\xA8" }, // U+6CE8 |
| 65 { "m17n:zh:cangjie", "\xe5\x80\x89" }, // U+5009 | 65 { "m17n:zh:cangjie", "\xe5\x80\x89" }, // U+5009 |
| 66 { "_comp_ime_aeebooiibjahgpgmhkeocbeekccfknbjzh-hant-t-i0-cangjie-1987", | 66 { "_comp_ime_aeebooiibjahgpgmhkeocbeekccfknbjzh-hant-t-i0-cangjie-1987", |
| 67 "\xe5\x80\x89" }, // U+5009 | 67 "\xe5\x80\x89" }, // U+5009 |
| 68 { "_comp_ime_gjhclobljhjhgoebiipblnmdodbmpdgdzh-hant-t-i0-cangjie-1987", | 68 { "_comp_ime_gjhclobljhjhgoebiipblnmdodbmpdgdzh-hant-t-i0-cangjie-1987", |
| 69 "\xe5\x80\x89" }, // U+5009 | 69 "\xe5\x80\x89" }, // U+5009 |
| 70 { "m17n:zh:quick", "\xe9\x80\x9f" }, // U+901F | 70 { "m17n:zh:quick", "\xe9\x80\x9f" }, // U+901F |
| 71 // For Hangul input method. | 71 // For Hangul input method. |
| 72 { "mozc-hangul", "\xed\x95\x9c" }, // U+D55C | 72 { "mozc-hangul", "\xed\x95\x9c" }, // U+D55C |
| 73 { "_comp_ime_bdgdidmhaijohebebipajioienkglgfohangul_2set", "\xed\x95\x9c" }, | 73 { "_comp_ime_bdgdidmhaijohebebipajioienkglgfohangul_2set", "\xed\x95\x9c" }, |
| 74 { "_comp_ime_bdgdidmhaijohebebipajioienkglgfohangul_3set390", | 74 { "_comp_ime_bdgdidmhaijohebebipajioienkglgfohangul_3set390", |
| (...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 670 if (IsKeyboardLayout(input_method.id())) { | 670 if (IsKeyboardLayout(input_method.id())) { |
| 671 xkb_id_to_descriptor_.insert( | 671 xkb_id_to_descriptor_.insert( |
| 672 std::make_pair(input_method.GetPreferredKeyboardLayout(), | 672 std::make_pair(input_method.GetPreferredKeyboardLayout(), |
| 673 input_method)); | 673 input_method)); |
| 674 } | 674 } |
| 675 } | 675 } |
| 676 } | 676 } |
| 677 | 677 |
| 678 } // namespace input_method | 678 } // namespace input_method |
| 679 } // namespace chromeos | 679 } // namespace chromeos |
| OLD | NEW |