OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "chrome/browser/chromeos/input_method/mock_input_method_engine.h" | 5 #include "chrome/browser/chromeos/input_method/mock_input_method_engine.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 | 8 |
9 namespace chromeos { | 9 namespace chromeos { |
10 | 10 |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 } | 122 } |
123 | 123 |
124 void MockInputMethodEngine::CandidateClicked(uint32 index) { | 124 void MockInputMethodEngine::CandidateClicked(uint32 index) { |
125 } | 125 } |
126 | 126 |
127 void MockInputMethodEngine::SetSurroundingText(const std::string& text, | 127 void MockInputMethodEngine::SetSurroundingText(const std::string& text, |
128 uint32 cursor_pos, | 128 uint32 cursor_pos, |
129 uint32 anchor_pos) { | 129 uint32 anchor_pos) { |
130 } | 130 } |
131 | 131 |
| 132 void MockInputMethodEngine::SetCompositionBounds(const gfx::Rect& bounds) { |
| 133 } |
| 134 |
132 } // namespace chromeos | 135 } // namespace chromeos |
OLD | NEW |