| Index: chrome/browser/chromeos/input_method/input_method_engine.h
|
| diff --git a/chrome/browser/chromeos/input_method/input_method_engine.h b/chrome/browser/chromeos/input_method/input_method_engine.h
|
| index 72e94612fff2cd574e45b011422c9925e67009ef..9687222fca4e7fbcf1addd19feb2774c70e963ef 100644
|
| --- a/chrome/browser/chromeos/input_method/input_method_engine.h
|
| +++ b/chrome/browser/chromeos/input_method/input_method_engine.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_H_
|
| #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_H_
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <map>
|
| #include <string>
|
| #include <vector>
|
| @@ -83,11 +86,11 @@ class InputMethodEngine : public ui::IMEEngineHandlerInterface {
|
| void Reset() override;
|
| void ProcessKeyEvent(const ui::KeyEvent& key_event,
|
| KeyEventDoneCallback& callback) override;
|
| - void CandidateClicked(uint32 index) override;
|
| + void CandidateClicked(uint32_t index) override;
|
| void SetSurroundingText(const std::string& text,
|
| - uint32 cursor_pos,
|
| - uint32 anchor_pos,
|
| - uint32 offset_pos) override;
|
| + uint32_t cursor_pos,
|
| + uint32_t anchor_pos,
|
| + uint32_t offset_pos) override;
|
| void HideInputView() override;
|
| void SetCompositionBounds(const std::vector<gfx::Rect>& bounds) override;
|
|
|
|
|