| Index: ui/base/ime/chromeos/input_method_util.h
 | 
| diff --git a/ui/base/ime/chromeos/input_method_util.h b/ui/base/ime/chromeos/input_method_util.h
 | 
| index 06f886f4bba2105a0f729a8eaf021c53cce6e346..36565a7c9c0f4e5b74919f64872720d0a2c364f8 100644
 | 
| --- a/ui/base/ime/chromeos/input_method_util.h
 | 
| +++ b/ui/base/ime/chromeos/input_method_util.h
 | 
| @@ -11,7 +11,7 @@
 | 
|  #include <string>
 | 
|  #include <vector>
 | 
|  
 | 
| -#include "base/containers/hash_tables.h"
 | 
| +#include "base/containers/flat_map.h"
 | 
|  #include "base/macros.h"
 | 
|  #include "base/strings/string16.h"
 | 
|  #include "base/threading/thread_checker.h"
 | 
| @@ -206,8 +206,8 @@ class UI_BASE_IME_EXPORT InputMethodUtil {
 | 
|    LanguageCodeToIdsMap language_code_to_ids_;
 | 
|    InputMethodIdToDescriptorMap id_to_descriptor_;
 | 
|  
 | 
| -  typedef base::hash_map<std::string, int> HashType;
 | 
| -  HashType english_to_resource_id_;
 | 
| +  using EnglishToIDMap = base::flat_map<std::string, int>;
 | 
| +  EnglishToIDMap english_to_resource_id_;
 | 
|  
 | 
|    InputMethodDelegate* delegate_;
 | 
|  
 | 
| 
 |