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

Unified Diff: public/web/WebInputElement.h

Issue 133443011: Add text field change handling for autofill preview in textarea element. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update documentation as per tkent's review comments Created 6 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 | « public/web/WebFormControlElement.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebInputElement.h
diff --git a/public/web/WebInputElement.h b/public/web/WebInputElement.h
index eb9b2f5047dd9dc3de4ff2251e94ee40dd486ee0..9967b16be1e60982e82a090468c50e959fba9d09 100644
--- a/public/web/WebInputElement.h
+++ b/public/web/WebInputElement.h
@@ -77,8 +77,6 @@ namespace blink {
BLINK_EXPORT void setValue(const WebString&, bool sendChangeEvent = false);
BLINK_EXPORT void setChecked(bool, bool sendChangeEvent = false);
BLINK_EXPORT WebString value() const;
- // This returns the non-sanitized, exact value inside the text field.
- BLINK_EXPORT WebString editingValue() const;
// Sets the value inside the text field without being sanitized.
// Can't be used if a renderer doesn't exist or on a non text field type.
// Caret will be moved to the end.
@@ -86,8 +84,6 @@ namespace blink {
BLINK_EXPORT void setSuggestedValue(const WebString&);
BLINK_EXPORT WebString suggestedValue() const;
BLINK_EXPORT void setSelectionRange(int, int);
- BLINK_EXPORT int selectionStart() const;
- BLINK_EXPORT int selectionEnd() const;
BLINK_EXPORT bool isValidValue(const WebString&) const;
BLINK_EXPORT bool isChecked() const;
BLINK_EXPORT bool isMultiple() const;
« no previous file with comments | « public/web/WebFormControlElement.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698