| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_UTIL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_UTIL_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_UTIL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_UTIL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> |
| 9 #include <string> | 10 #include <string> |
| 10 #include <vector> | 11 #include <vector> |
| 11 | 12 |
| 12 #include "base/string16.h" | 13 #include "base/string16.h" |
| 13 #include "chrome/browser/chromeos/cros/input_method_library.h" | 14 #include "chrome/browser/chromeos/cros/input_method_library.h" |
| 14 | 15 |
| 15 namespace chromeos { | 16 namespace chromeos { |
| 16 namespace input_method { | 17 namespace input_method { |
| 17 | 18 |
| 18 // The list of language that do not have associated input methods in IBus. | 19 // The list of language that do not have associated input methods in IBus. |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 bool GetInputMethodIdsFromLanguageCodeInternal( | 147 bool GetInputMethodIdsFromLanguageCodeInternal( |
| 147 const std::multimap<std::string, std::string>& language_code_to_ids, | 148 const std::multimap<std::string, std::string>& language_code_to_ids, |
| 148 const std::string& normalized_language_code, | 149 const std::string& normalized_language_code, |
| 149 InputMethodType type, | 150 InputMethodType type, |
| 150 std::vector<std::string>* out_input_method_ids); | 151 std::vector<std::string>* out_input_method_ids); |
| 151 | 152 |
| 152 } // namespace input_method | 153 } // namespace input_method |
| 153 } // namespace chromeos | 154 } // namespace chromeos |
| 154 | 155 |
| 155 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_UTIL_H_ | 156 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_UTIL_H_ |
| OLD | NEW |