| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_ENGINE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 #include "base/time/time.h" | 11 #include "base/time/time.h" |
| 12 #include "chrome/browser/chromeos/input_method/input_method_engine_interface.h" | 12 #include "chrome/browser/chromeos/input_method/input_method_engine_interface.h" |
| 13 #include "ui/base/ime/chromeos/input_method_descriptor.h" | 13 #include "chromeos/ime/input_method_descriptor.h" |
| 14 #include "url/gurl.h" | 14 #include "url/gurl.h" |
| 15 | 15 |
| 16 class Profile; | 16 class Profile; |
| 17 | 17 |
| 18 namespace ui { | 18 namespace ui { |
| 19 class CandidateWindow; | 19 class CandidateWindow; |
| 20 class KeyEvent; | 20 class KeyEvent; |
| 21 | 21 |
| 22 namespace ime { | 22 namespace ime { |
| 23 struct InputMethodMenuItem; | 23 struct InputMethodMenuItem; |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 std::map<int, int> candidate_indexes_; | 137 std::map<int, int> candidate_indexes_; |
| 138 | 138 |
| 139 // Used with SendKeyEvents and ProcessKeyEvent to check if the key event | 139 // Used with SendKeyEvents and ProcessKeyEvent to check if the key event |
| 140 // sent to ProcessKeyEvent is sent by SendKeyEvents. | 140 // sent to ProcessKeyEvent is sent by SendKeyEvents. |
| 141 const ui::KeyEvent* sent_key_event_; | 141 const ui::KeyEvent* sent_key_event_; |
| 142 }; | 142 }; |
| 143 | 143 |
| 144 } // namespace chromeos | 144 } // namespace chromeos |
| 145 | 145 |
| 146 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_H_ | 146 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_H_ |
| OLD | NEW |