diff options
Diffstat (limited to 'chromium/components/exo/text_input.cc')
-rw-r--r-- | chromium/components/exo/text_input.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/chromium/components/exo/text_input.cc b/chromium/components/exo/text_input.cc index d004a1f8cd3..370a77ee995 100644 --- a/chromium/components/exo/text_input.cc +++ b/chromium/components/exo/text_input.cc @@ -324,6 +324,13 @@ bool TextInput::SetCompositionFromExistingText( return false; } +// TODO(crbug.com/1091088) Implement setAutocorrectRange +bool TextInput::SetAutocorrectRange(const base::string16& autocorrect_text, + const gfx::Range& range) { + NOTIMPLEMENTED_LOG_ONCE(); + return false; +} + void TextInput::OnKeyboardVisibilityChanged(bool is_visible) { delegate_->OnVirtualKeyboardVisibilityChanged(is_visible); } |