diff options
author | yusukes@google.com <yusukes@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-07 05:41:12 +0000 |
---|---|---|
committer | yusukes@google.com <yusukes@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-07 05:41:12 +0000 |
commit | 75ed5bd1418d5dc963389538a165cf2c2ea90eb5 (patch) | |
tree | 6f9eeeee9c4d2849a67ee2d7c24babc076b23109 /chrome/browser/chromeos/input_method | |
parent | d9b8e7c869656344c3eb6a06b5fc5cbef61b5e6e (diff) | |
download | chromium_src-75ed5bd1418d5dc963389538a165cf2c2ea90eb5.zip chromium_src-75ed5bd1418d5dc963389538a165cf2c2ea90eb5.tar.gz chromium_src-75ed5bd1418d5dc963389538a165cf2c2ea90eb5.tar.bz2 |
Fix typo in input_method_util.cc.
BUG=chromium-os:4565
TEST=none
Review URL: http://codereview.chromium.org/2888002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51694 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/input_method')
-rw-r--r-- | chrome/browser/chromeos/input_method/input_method_util.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/input_method/input_method_util.cc b/chrome/browser/chromeos/input_method/input_method_util.cc index 925c4d2..48fb516 100644 --- a/chrome/browser/chromeos/input_method/input_method_util.cc +++ b/chrome/browser/chromeos/input_method/input_method_util.cc @@ -313,7 +313,10 @@ bool GetLocalizedString( HashType::const_iterator iter = english_to_resource_id->find(english_string); if (iter == english_to_resource_id->end()) { - LOG(ERROR) << "Resouce ID is not found for: " << english_string; + // TODO(yusukes): Write Autotest which checks if all display names and all + // property names for supported input methods are listed in the resource ID + // array (crosbug.com/4572). + LOG(ERROR) << "Resource ID is not found for: " << english_string; return false; } |