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

Unified Diff: ui/base/ime/input_method.h

Issue 2077783002: Make limitations for input.ime.sendKeyEvents API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Blacklist extension window. Created 4 years, 6 months 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: ui/base/ime/input_method.h
diff --git a/ui/base/ime/input_method.h b/ui/base/ime/input_method.h
index 598fd4f76f9824db98e3b0d60631a3e1da85c930..b21ee7d26eb4b1c13c6455e6412a72a1e1c154cc 100644
--- a/ui/base/ime/input_method.h
+++ b/ui/base/ime/input_method.h
@@ -8,6 +8,7 @@
#include <stdint.h>
#include <string>
+#include <vector>
#include "base/event_types.h"
#include "build/build_config.h"
@@ -152,6 +153,8 @@ class InputMethod {
// Management of the observer list.
virtual void AddObserver(InputMethodObserver* observer) = 0;
virtual void RemoveObserver(InputMethodObserver* observer) = 0;
+
+ virtual std::vector<ui::KeyEvent*> GetKeyEventsForTest() = 0;
};
} // namespace ui

Powered by Google App Engine
This is Rietveld 408576698