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

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

Issue 2508363003: [refactor] - Move textInputInfo() and textInputType() from WebWidget to WebInputMethodController (Closed)
Patch Set: Fixed Rebase Created 4 years 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/WebView.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/WebWidget.h
diff --git a/third_party/WebKit/public/web/WebWidget.h b/third_party/WebKit/public/web/WebWidget.h
index 7641bb139158ef0427c0c3663f457d9fd91bf560..3e6f5889a0086cbd214c7539df96c0e3ccdcbdc7 100644
--- a/third_party/WebKit/public/web/WebWidget.h
+++ b/third_party/WebKit/public/web/WebWidget.h
@@ -144,15 +144,6 @@ class WebWidget {
// "marked range."
virtual WebRange compositionRange() { return WebRange(); }
- // Returns information about the current text input of this WebWidget.
- // Note that this query can be expensive for long fields, as it returns the
- // plain-text representation of the current editable element. Consider using
- // the lighter-weight textInputType() when appropriate.
- virtual WebTextInputInfo textInputInfo() { return WebTextInputInfo(); }
-
- // Returns the type of current text input of this WebWidget.
- virtual WebTextInputType textInputType() { return WebTextInputTypeNone; }
-
// Returns the anchor and focus bounds of the current selection.
// If the selection range is empty, it returns the caret bounds.
virtual bool selectionBounds(WebRect& anchor, WebRect& focus) const {
« no previous file with comments | « third_party/WebKit/public/web/WebView.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698