Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Unified Diff: chrome/browser/chromeos/input_method/input_method_engine.h

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698