Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: chrome/browser/chromeos/input_method/input_method_util.cc

Issue 25737006: Change IME indicator character from U+9177 to U+6CE8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chromeos/input_method/input_method_util_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/input_method/input_method_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698