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

Unified Diff: third_party/WebKit/Source/web/WebInputMethodControllerImpl.h

Issue 2568093003: Support parsing BackgroundSpans and UnderlineSpans in Android IME's commitText() (Closed)
Patch Set: Rebase Created 3 years, 11 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: third_party/WebKit/Source/web/WebInputMethodControllerImpl.h
diff --git a/third_party/WebKit/Source/web/WebInputMethodControllerImpl.h b/third_party/WebKit/Source/web/WebInputMethodControllerImpl.h
index 99488a97877603ffbcaa33907c38b34d0df13eb9..076933575cab1f0a234a654b645ede49cbb36acb 100644
--- a/third_party/WebKit/Source/web/WebInputMethodControllerImpl.h
+++ b/third_party/WebKit/Source/web/WebInputMethodControllerImpl.h
@@ -31,7 +31,9 @@ class WebInputMethodControllerImpl : public WebInputMethodController {
const WebVector<WebCompositionUnderline>& underlines,
int selectionStart,
int selectionEnd) override;
- bool commitText(const WebString& text, int relativeCaretPosition) override;
+ bool commitText(const WebString& text,
+ const WebVector<WebCompositionUnderline>& underlines,
+ int relativeCaretPosition) override;
bool finishComposingText(
ConfirmCompositionBehavior selectionBehavior) override;
WebTextInputInfo textInputInfo() override;

Powered by Google App Engine
This is Rietveld 408576698