Index: third_party/WebKit/Source/web/WebViewImpl.h |
diff --git a/third_party/WebKit/Source/web/WebViewImpl.h b/third_party/WebKit/Source/web/WebViewImpl.h |
index 1a2a957c6b82a6b5960d0d1ddbbb7c016dc17962..a69995d7d3a426ca11657f123a8234d91eab26c1 100644 |
--- a/third_party/WebKit/Source/web/WebViewImpl.h |
+++ b/third_party/WebKit/Source/web/WebViewImpl.h |
@@ -141,9 +141,8 @@ public: |
const WebVector<WebCompositionUnderline>& underlines, |
int selectionStart, |
int selectionEnd) override; |
- bool confirmComposition() override; |
- bool confirmComposition(ConfirmCompositionBehavior selectionBehavior) override; |
- bool confirmComposition(const WebString& text) override; |
+ bool commitText(const WebString& text, int relativeCaretPosition) override; |
+ bool finishComposingText(ConfirmCompositionBehavior selectionBehavior) override; |
WebRange compositionRange() override; |
WebTextInputInfo textInputInfo() override; |
WebTextInputType textInputType() override; |
@@ -563,8 +562,6 @@ private: |
// Returns true if the event was actually processed. |
bool keyEventDefault(const WebKeyboardEvent&); |
- bool confirmComposition(const WebString& text, ConfirmCompositionBehavior); |
- |
// Returns true if the view was scrolled. |
bool scrollViewWithKeyboard(int keyCode, int modifiers); |