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

Unified Diff: ui/base/ime/mock_input_method.cc

Issue 20526005: Implement virtual keyboard hiding. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Init Created 7 years, 5 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/mock_input_method.cc
diff --git a/ui/base/ime/mock_input_method.cc b/ui/base/ime/mock_input_method.cc
index 7701b5c8f0166c0824b94dca4b3f227303819f71..52ead1e1a55da0579a64eac9372ad32d397af3cf 100644
--- a/ui/base/ime/mock_input_method.cc
+++ b/ui/base/ime/mock_input_method.cc
@@ -47,6 +47,10 @@ void MockInputMethod::OnBlur() {
FOR_EACH_OBSERVER(Observer, observer_list_, OnBlur());
}
+void MockInputMethod::OnPossibleRefocus() {
+ FOR_EACH_OBSERVER(Observer, observer_list_, OnPossibleRefocus());
+}
+
bool MockInputMethod::OnUntranslatedIMEMessage(const base::NativeEvent& event,
NativeEventResult* result) {
FOR_EACH_OBSERVER(Observer, observer_list_, OnUntranslatedIMEMessage(event));

Powered by Google App Engine
This is Rietveld 408576698