diff options
Diffstat (limited to 'WebKit/chromium/src/WebPopupMenuImpl.cpp')
| -rw-r--r-- | WebKit/chromium/src/WebPopupMenuImpl.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/WebKit/chromium/src/WebPopupMenuImpl.cpp b/WebKit/chromium/src/WebPopupMenuImpl.cpp index f9da394..9ac4d34 100644 --- a/WebKit/chromium/src/WebPopupMenuImpl.cpp +++ b/WebKit/chromium/src/WebPopupMenuImpl.cpp @@ -230,6 +230,7 @@ void WebPopupMenuImpl::setFocus(bool enable) { } +// DEPRECATED, will be removed later. bool WebPopupMenuImpl::handleCompositionEvent( WebCompositionCommand command, int cursorPosition, int targetStart, int targetEnd, const WebString& imeString) @@ -237,11 +238,34 @@ bool WebPopupMenuImpl::handleCompositionEvent( return false; } +bool WebPopupMenuImpl::setComposition( + const WebString& text, const WebVector<WebCompositionUnderline>& underlines, + int selectionStart, int selectionEnd) +{ + return false; +} + +bool WebPopupMenuImpl::confirmComposition() +{ + return false; +} + +// DEPRECATED, will be removed later. bool WebPopupMenuImpl::queryCompositionStatus(bool* enabled, WebRect* caretRect) { return false; } +WebTextInputType WebPopupMenuImpl::textInputType() +{ + return WebTextInputTypeNone; +} + +WebRect WebPopupMenuImpl::caretOrSelectionBounds() +{ + return WebRect(); +} + void WebPopupMenuImpl::setTextDirection(WebTextDirection direction) { } |
