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

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

Issue 826713002: [ChromeOS] Show autofill popup after keyboard (if any) is shown. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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: ui/base/ime/text_input_client.h
diff --git a/ui/base/ime/text_input_client.h b/ui/base/ime/text_input_client.h
index 582a0d3d813869aa26a5ad9feedf1a1aa5ae07a2..5e81a1b98bf9e1270437188324a170b65fc54be1 100644
--- a/ui/base/ime/text_input_client.h
+++ b/ui/base/ime/text_input_client.h
@@ -69,7 +69,7 @@ class UI_BASE_EXPORT TextInputClient {
virtual ui::TextInputMode GetTextInputMode() const = 0;
// Returns the current text input flags, which is a bit map of
- // WebTextInputType defined in blink. This is valid only for web input fileds;
+ // WebTextInputType defined in blink. This is valid only for web input fields;
// it will return TEXT_INPUT_FLAG_NONE for native input fields.
virtual int GetTextInputFlags() const = 0;
@@ -176,6 +176,10 @@ class UI_BASE_EXPORT TextInputClient {
virtual bool IsEditingCommandEnabled(int command_id) = 0;
// Execute the command specified by |command_id|.
virtual void ExecuteEditingCommand(int command_id) = 0;
+
+ // Called when the virtual keyboard was requested to be shown, but was already
+ // showing.
+ virtual void OnKeyboardBoundsUnchanged() = 0;
};
} // namespace ui

Powered by Google App Engine
This is Rietveld 408576698