diff options
Diffstat (limited to 'chromium/ui/base/ime/input_method.h')
-rw-r--r-- | chromium/ui/base/ime/input_method.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/chromium/ui/base/ime/input_method.h b/chromium/ui/base/ime/input_method.h index b400ece46ac..9ead7fa666e 100644 --- a/chromium/ui/base/ime/input_method.h +++ b/chromium/ui/base/ime/input_method.h @@ -18,10 +18,6 @@ #include "ui/events/platform_event.h" #include "ui/gfx/geometry/rect.h" -namespace extensions { -class InputImeApiTest; -} // namespace extensions - namespace ui { namespace internal { @@ -57,8 +53,6 @@ class TextInputClient; // ui::InputMethod and owns it. class InputMethod { public: - InputMethod() : track_key_events_for_testing_(false) {} - #if defined(OS_WIN) typedef LRESULT NativeEventResult; #else @@ -174,16 +168,6 @@ class InputMethod { // Return the keyboard controller; used only on Windows. virtual InputMethodKeyboardController* GetInputMethodKeyboardController() = 0; - - protected: - friend class extensions::InputImeApiTest; - - // Gets the tracked key events of using input.ime.sendKeyEvents API. - virtual const std::vector<std::unique_ptr<ui::KeyEvent>>& - GetKeyEventsForTesting() = 0; - - // Whether the key events will be tracked. Only used for testing. - bool track_key_events_for_testing_; }; } // namespace ui |