| Index: chrome/browser/chromeos/input_method/input_method_util.cc
|
| diff --git a/chrome/browser/chromeos/input_method/input_method_util.cc b/chrome/browser/chromeos/input_method/input_method_util.cc
|
| index 188dea21fb970d844074e791d1610884b85cdd2a..0df1b45af095c8b4e2a5009c289a6da993208d8c 100644
|
| --- a/chrome/browser/chromeos/input_method/input_method_util.cc
|
| +++ b/chrome/browser/chromeos/input_method/input_method_util.cc
|
| @@ -435,7 +435,7 @@ std::string GetLanguageCodeFromDescriptor(
|
| language_code == "zh" ||
|
| language_code == "pt")) {
|
| std::vector<std::string> portions;
|
| - SplitString(descriptor.id, ':', &portions);
|
| + base::SplitString(descriptor.id, ':', &portions);
|
| if (portions.size() >= 2 && !portions[1].empty()) {
|
| language_code.append("-");
|
| language_code.append(StringToUpperASCII(portions[1]));
|
| @@ -463,7 +463,7 @@ std::string GetKeyboardLayoutName(const std::string& input_method_id) {
|
| }
|
|
|
| std::vector<std::string> splitted_id;
|
| - SplitString(input_method_id, ':', &splitted_id);
|
| + base::SplitString(input_method_id, ':', &splitted_id);
|
| return (splitted_id.size() > 1) ? splitted_id[1] : "";
|
| }
|
|
|
|
|