| OLD | NEW |
| 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 #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 | 7 |
| 8 #include <cstddef> | 8 #include <cstddef> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/containers/hash_tables.h" | 13 #include "base/containers/hash_tables.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/strings/string16.h" | 15 #include "base/strings/string16.h" |
| 16 #include "base/threading/thread_checker.h" | 16 #include "base/threading/thread_checker.h" |
| 17 #include "ui/base/ime/chromeos/input_method_descriptor.h" | 17 #include "chromeos/ime/input_method_descriptor.h" |
| 18 | 18 |
| 19 namespace chromeos { | 19 namespace chromeos { |
| 20 namespace input_method { | 20 namespace input_method { |
| 21 | 21 |
| 22 class InputMethodDelegate; | 22 class InputMethodDelegate; |
| 23 | 23 |
| 24 enum InputMethodType { | 24 enum InputMethodType { |
| 25 kKeyboardLayoutsOnly, | 25 kKeyboardLayoutsOnly, |
| 26 kAllInputMethods, | 26 kAllInputMethods, |
| 27 }; | 27 }; |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 std::vector<std::string> hardware_login_layouts_; | 201 std::vector<std::string> hardware_login_layouts_; |
| 202 std::vector<std::string> cached_hardware_layouts_; | 202 std::vector<std::string> cached_hardware_layouts_; |
| 203 | 203 |
| 204 DISALLOW_COPY_AND_ASSIGN(InputMethodUtil); | 204 DISALLOW_COPY_AND_ASSIGN(InputMethodUtil); |
| 205 }; | 205 }; |
| 206 | 206 |
| 207 } // namespace input_method | 207 } // namespace input_method |
| 208 } // namespace chromeos | 208 } // namespace chromeos |
| 209 | 209 |
| 210 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_UTIL_H_ | 210 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_UTIL_H_ |
| OLD | NEW |