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

Unified Diff: Source/WebKit/chromium/src/WebPopupMenuImpl.cpp

Issue 6532004: DO NOT SUBMIT (Closed) Base URL: git://git.webkit.org/WebKit.git@master
Patch Set: Address feedback Created 9 years, 9 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 | « Source/WebKit/chromium/src/WebPopupMenuImpl.h ('k') | Source/WebKit/chromium/src/WebViewImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
{
}
« no previous file with comments | « Source/WebKit/chromium/src/WebPopupMenuImpl.h ('k') | Source/WebKit/chromium/src/WebViewImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698