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

Unified Diff: third_party/WebKit/public/web/WebPlugin.h

Issue 2568093003: Support parsing BackgroundSpans and UnderlineSpans in Android IME's commitText() (Closed)
Patch Set: Use addCompositionUnderlines() where I said I couldn't 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
« no previous file with comments | « third_party/WebKit/public/web/WebInputMethodController.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebPlugin.h
diff --git a/third_party/WebKit/public/web/WebPlugin.h b/third_party/WebKit/public/web/WebPlugin.h
index f9a488669051858c6e5a0c5aeffc0a9a98961de7..e805e94d7b926aa827ba0b08c9b0d4150b5f9f65 100644
--- a/third_party/WebKit/public/web/WebPlugin.h
+++ b/third_party/WebKit/public/web/WebPlugin.h
@@ -178,7 +178,9 @@ class WebPlugin {
// Deletes the ongoing composition if any, inserts the specified text, and
// moves the caret according to relativeCaretPosition.
- virtual bool commitText(const WebString& text, int relativeCaretPosition) {
+ virtual bool commitText(const WebString& text,
+ const WebVector<WebCompositionUnderline>& underlines,
+ int relativeCaretPosition) {
return false;
}
« no previous file with comments | « third_party/WebKit/public/web/WebInputMethodController.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698