Index: Source/WebKit/chromium/src/WebPopupMenuImpl.cpp |
diff --git a/Source/WebKit/chromium/src/WebPopupMenuImpl.cpp b/Source/WebKit/chromium/src/WebPopupMenuImpl.cpp |
index b4d4246c3f6010bcaf5021d4cd9681abfc393db5..3f3cd5652d76fd6e6de0790175e733144cdcd7cd 100644 |
--- a/Source/WebKit/chromium/src/WebPopupMenuImpl.cpp |
+++ b/Source/WebKit/chromium/src/WebPopupMenuImpl.cpp |
@@ -43,6 +43,7 @@ |
#include "WebInputEvent.h" |
#include "WebInputEventConversion.h" |
+#include "WebRange.h" |
#include "WebRect.h" |
#include "WebWidgetClient.h" |
@@ -252,6 +253,13 @@ bool WebPopupMenuImpl::confirmComposition(const WebString& text) |
return false; |
} |
+bool WebPopupMenuImpl::compositionRange(unsigned* location, unsigned* length) |
+{ |
+ *location = 0; |
+ *length = 0; |
+ return false; |
+} |
+ |
WebTextInputType WebPopupMenuImpl::textInputType() |
{ |
return WebTextInputTypeNone; |
@@ -262,6 +270,14 @@ WebRect WebPopupMenuImpl::caretOrSelectionBounds() |
return WebRect(); |
} |
+bool WebPopupMenuImpl::caretOrSelectionRange(unsigned* location, |
+ unsigned* length) |
+{ |
+ *location = 0; |
+ *length = 0; |
+ return false; |
+} |
+ |
void WebPopupMenuImpl::setTextDirection(WebTextDirection direction) |
{ |
} |