summaryrefslogtreecommitdiffstats
path: root/ui/base/ime/chromeos/mock_ime_engine_handler.cc
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-23 00:05:24 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-23 08:06:02 +0000
commit20f6a6d5309f54d01b218a2df393e80fd43f166c (patch)
treed8f63ef92e379665cc036e45a71419dabb15ad9d /ui/base/ime/chromeos/mock_ime_engine_handler.cc
parent6d4faa11235e13e35c202ec5411360cffbb81111 (diff)
downloadchromium_src-20f6a6d5309f54d01b218a2df393e80fd43f166c.zip
chromium_src-20f6a6d5309f54d01b218a2df393e80fd43f166c.tar.gz
chromium_src-20f6a6d5309f54d01b218a2df393e80fd43f166c.tar.bz2
Switch to standard integer types in ui/base/.
BUG=138542 TBR=sky@chromium.org Review URL: https://codereview.chromium.org/1547893002 Cr-Commit-Position: refs/heads/master@{#366729}
Diffstat (limited to 'ui/base/ime/chromeos/mock_ime_engine_handler.cc')
-rw-r--r--ui/base/ime/chromeos/mock_ime_engine_handler.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/ui/base/ime/chromeos/mock_ime_engine_handler.cc b/ui/base/ime/chromeos/mock_ime_engine_handler.cc
index 49dd4d4..3216518 100644
--- a/ui/base/ime/chromeos/mock_ime_engine_handler.cc
+++ b/ui/base/ime/chromeos/mock_ime_engine_handler.cc
@@ -60,13 +60,12 @@ void MockIMEEngineHandler::ProcessKeyEvent(const ui::KeyEvent& key_event,
last_passed_callback_ = callback;
}
-void MockIMEEngineHandler::CandidateClicked(uint32 index) {
-}
+void MockIMEEngineHandler::CandidateClicked(uint32_t index) {}
void MockIMEEngineHandler::SetSurroundingText(const std::string& text,
- uint32 cursor_pos,
- uint32 anchor_pos,
- uint32 offset_pos) {
+ uint32_t cursor_pos,
+ uint32_t anchor_pos,
+ uint32_t offset_pos) {
++set_surrounding_text_call_count_;
last_set_surrounding_text_ = text;
last_set_surrounding_cursor_pos_ = cursor_pos;